shiv Report post Posted February 25, 2014 Hi, We are displaying multiple fusion charts on a web page. As per our requirnement,on button click we want to print all those fusioncharts on one page. (without exporting it to any file.) Please help me in this issue. Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted February 26, 2014 Hi, From the HTML button if want to print the webpage, you may use "window.print()" function or "FusionCharts.printManager.managedPrint()" from FusionCharts printManager class. For more information, please refer to the link: http://docs.fusioncharts.com/charts/contents/JavaScript/JS_PrintManager.html Hope this helps! Share this post Link to post Share on other sites
shiv Report post Posted February 28, 2014 Thanks for your reply, Yes, I am using window.print() function. But I could not print fusioncharts rendered in flash in other than IE browser. Should I render charts in javascript for the same? Share this post Link to post Share on other sites
Guest Sashibhusan Report post Posted February 28, 2014 Hi, If you are using Flash charts and willing to print the charts other than IE, you would need to enable the FusionCharts print manager by adding the single line of JavaScript code "FusionCharts.printManager.enabled(true);" and call the printing function only after "FusionChartsEvents.PrintReadyStateChange" fire. As an alternative way, if you are ok with rendering all the charts in JavaScript mode, there is no need of FusionCharts print manager and all the charts will print on calling "window.print()" in all browsers. Hope this helps! Share this post Link to post Share on other sites
shiv Report post Posted February 28, 2014 Thank you very much Shashi. Definitely it is going to help me a lot. Share this post Link to post Share on other sites