Sign in to follow this  
srinivas

Error While Exporting At Server Side

Recommended Posts

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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this