Sign in to follow this  
gsrikanth1226

Fusion charts download which are rendered with javascript

Recommended Posts

Hi,

I am able to display charts which are rendered with javascript using code

 
<script type="text/javascript">
  FusionCharts.setCurrentRenderer("javascript");
    var myChart1 = new FusionCharts("C:/Users/Srikanth/Desktop/FusionCharts_XT_OLSrc/FusionCharts_XT/Charts/Column2D.swf", "myChartId1", "100%","100%", "0", "1");
      myChart1.setXMLUrl("SimpleExample.xml");
      myChart1.render("chart1div");
    </script>
But when i click on the download as pdf or image or any format its gving error unable to find .
 
Please help me to solve the problem

post-58547-0-10114600-1382533638_thumb.png

Share this post


Link to post
Share on other sites
Guest Rishab

Hi,

To export the JavaScript chart, the chart data is sent to external servers for processing. You must have an active internet connection for this feature to work.

I suggest you to have an active Internet Connection and while exporting the chart.

In case you want to process the exported data on your own server, you may setup the chart to send the data to your own server with the help of Batik library.

Please visit the below link for more information -
http://docs.fusioncharts.com/charts/contents/exporting-image/ECPureJS.html#ownserver

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