srinivas Report post Posted November 24, 2011 Hi I am trying to export the more than one chart at server side. I am using the fusioncharts_evaluation version 3.2 It was capturing the images. But it was not saving the image at server. Below is the attached file where i got the errors after capturing. I have called the following function in the button click event for exporting. function exportCharts(exportFormat) { for ( var chartRef in FusionCharts.items ) { alert("Fusion chart Ids :"+chartRef); if ( FusionCharts.items[chartRef].exportChart ) { alert("Fusion chart Ids is exporting :"+chartRef); //document.getElementById ( "linkToExportedFile" ).innerHTML = "Exporting..."; FusionCharts.items[chartRef].exportChart( { "exportFormat" : exportFormat } ); } else { document.getElementById ( "linkToExportedFile" ).innerHTML = "Please wait till the chart completes rendering..." ; } } } errorpage.txt Share this post Link to post Share on other sites