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)