我可以在IExplorer中毫无问题地打印甜甜圈图。但是,当我尝试在Chrome上打印时,图例不会显示。我使用元素选项卡检查了所有图例是否存在。但不是在Chrome中显示,而是在IE中显示。
我要打印图表形式的js代码=
function test_print() {
var divContents = $("#frmFieldSet").html();
var printWindow = window.open('', '', 'height=400,width=800');
printWindow.document.write('<div style="text-align:center; font-
weight:bold; font-family:sans-serif;">#{loc.generaltrialbalancereport}
</div>');
printWindow.document.write('<div id="printerDiv">');
printWindow.document.write(divContents);
printWindow.document.write('</div>');
printWindow.document.close();
printWindow.print();
}
这是我在看到的html视图http://www.resimag.com/p1/74ee1beb4d5.png上的图表视图。
在Chrome浏览器中:http://www.resimag.com/p1/cc4cf13e212.png
在IE中:http://www.resimag.com/128b2ae4930.png
您可以在IE中显示图例,而在Chrome中则不可以。我该怎么办?