We are using the free version of fusion charts and want to know is there a way to export the generated chart to image without using any third party components. We are using the ASP.Net for generating the charts.
How to export a FusionChart to Image in ASP.Net
8.2k Views Asked by suryakiran At
3
There are 3 best solutions below
1

FusionCharts Team has developed a .NET assembly which will enable you to export chart at server without loading the chart in the browser.
You can have it by writing to FusionCharts Support at http://www.fusioncharts.com/contact/.
This only works for FusionCharts v3 charts.
SOLUTION
After a research on this topic, I have found a useful solution for this.
For that we need to have a freeware from Bytecout to convert swf to image. This can be downloaded from this link.
Then we need to register the COM dlls and add the reference to our project. Refer to the below for further usage
Here animation='0' plays a very important role, it specifies the fusion chart swf that, it must be loaded without animation. Also it is advisable if we sleep the code for 1 or 2 sec the swf would be loaded completely and image is converted to the selected format.
Hope this would be useful for someone like me. :-)