Vova Report post Posted March 6, 2009 It seems that soon we'll be completely disappointed with acquiring your product. Either it is oriented on simple tasks only or you will be able to explain how this component works. When I try to save three charts as images using such code: function SaveChartAsImage() { var chtRURSave = getChartFromId('chtRUR'); chtRURSave.saveAsImage(); var chtRRRSave = getChartFromId('chtRRR'); chtRRRSave.saveAsImage(); var chtRCRSave = getChartFromId('chtRCR'); chtRCRSave.saveAsImage(); } the order in which images are saved is different from the sequence in the source code. IMHO Javascript is executed async. And due to such behaviour only obehavior(sometimes two) from those three is saved to disk. Is there anybody who knows how to handle this issue? And, why there are no *.fla files available in your FusionCharts package? (only *.as files) Share this post Link to post Share on other sites
FusionCharts Support Report post Posted March 10, 2009 Hi, This feature works following this process: 1. Each chart being a Flash animation needs to collect the image data 2. Once collected the data is posted to the server side image saving script. The time taken by the 'image data collection' or capture process takes time as per the size of the chart. Hence, the data does not gets posted sequentially but as when the capture phase is over. Could you please update to our latest version 3.1 where we have shunned saveAsImage feature and introduced a smarter feature called 'export'. Though this process still pass through the capture phase the image saving to server becomes simpler. .Fla files are provided with the Enterprise License. Share this post Link to post Share on other sites