Sign in to follow this  
Sanjukta

Facility for Batch export and Independent export for fusion charts

Recommended Posts

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

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

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 by Guest

Share this post


Link to post
Share on other sites

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 by Guest

Share this post


Link to post
Share on other sites

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

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

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