Hi all,
I know that you can use javascript to save a chart as an image using a method similar to the following:
var chartToPrint = getChartFromId("chart1Id");
chartToPrint.saveAsImage();
and that I need a handler script on the server to process the image saving.
However, when using this method it brings up a 'save as' dialog in the client browser which saves the image to the client. What I would like to do is only save the chart image to a file on the server instead - never showing the client a 'save as' dialog at all.
Is this possible with FusionCharts?