Hi,
Can someone help me?
I want to do something like this:
-- generate a chart and after generating create an image snapshot of the chart that is saved as a jpeg format in the server directory.
in other words, everytime a chart is generated their is a corresponding image file in the server.
I have a chart generated thru this code:
var graphType = '../charts/MSBar3D.swf';
var graphWidth = '600';
var graphHeight = '550';
$("#myChart2Container").insertFusionCharts({
swfUrl: graphType,
width: graphWidth,
height: graphHeight,
dataFormat: "json",
dataSource: json.html,
});
now, what to do to create those images?
Thanks.