The chart image loads in chrome browser, but when i invoke the print function with below JavaScript called from ASP.NET chart page
var printWindow = window.open('', 'Chart', 'height=400,width=400');
printWindow.document.write('<html><body>');
printWindow.document.write('HTML TAG OF GENERATED IMAGE');
printWindow.document.write('</body></html>');
printWindow.document.close();
printWindow.print();
The image shows up in IE, but not in chrome(Version 41.0.2272.101).
Thanks, B.J.Prasanna.