Hari Gopal Report post Posted July 15, 2010 Hi Team, We need to have the facility to export fusion charts from our dashboard. We are currently using the FCExporter handler(Server Side) to export the individual charts. Can you please suggest a way to provide a provision to export all the charts in the page(in addition to having the export functionality on the individual charts)? Regards Hari Share this post Link to post Share on other sites
Sanjukta Report post Posted July 15, 2010 Hi Hari, Could you please refer to the following links to get a detailed information about Batch Export functionality in FusionCharts? Ref.- http://www.fusioncharts.com/docs?/ECBatchOverview.html http://www.fusioncharts.com/docs?/ECBatchSetup.html http://www.fusioncharts.com/docs?/ECBatchCallback.html http://www.fusioncharts.com/docs?/ECBatchOverride.html hope this helps. Share this post Link to post Share on other sites
Hari Gopal Report post Posted July 15, 2010 (edited) Hi, Thanks for your reply. I have gone thru these links. It is explaining client side batch export. Can you provide suggestion for server side batch export? Regards Hari Edited July 15, 2010 by Guest Share this post Link to post Share on other sites
Sanjukta Report post Posted July 15, 2010 (edited) Hi Hari, Can you provide suggestion for server side batch export? There are two options for the Export: 1. You want to export multiple chart images and save it in a single file >> I am afraid, Fusioncharts does not support this functionality, as of now. 2. You want to export multiple chart images and save it in individual files for each chart >> Call a javascript function on the click of the button, which would initiate export of multiple charts. Ref.- <script type="text/javascript"> function ExportMyCharts() { var chartObject1 = getChartFromId('myChart1'); if( chartObject1.hasRendered() ) chartObject1.exportChart(); // export another chart var chartObject2 = getChartFromId('myChart2'); if( chartObject2.hasRendered() ) chartObject2.exportChart(); } </script> 3. You can modify the Export handler for the Batch Export in the server-side, as per your requirement. Hope this helps. Please feel free to revert in case you have any further queries on the same. Edited July 15, 2010 by Guest Share this post Link to post Share on other sites
babu Report post Posted September 29, 2010 Hi Team, We need to have the facility to export fusion charts from our dashboard. We are currently using the FCExporter handler(Server Side) to export the individual charts. Can you please suggest a way to provide a provision to export all the charts in the page(in addition to having the export functionality on the individual charts)? Regards Hari Hi Hari This is sudhir i am using fusion charts and saving the image on the server side ,it is doing fine.but for saving the image on the server side ,it taking 2 minutes for saving the image ,is there any option for saving image fastly,Please help me regarding this issue. Thanks Sudhir Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted September 29, 2010 Hi Sudhir, Could you please check the width and the height of the image that you are trying to save? It depends on the performance of the server as well the size of the image. Hope this helps. Share this post Link to post Share on other sites