Vova

Members
  • Content count

    2
  • Joined

  • Last visited

About Vova

  • Rank
    Forum Newbie
  1. 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)
  2. I have 3 charts in 1 page. I need to save them as images in a defined order. But I found that these charts are saved in a random order. I need them in a pre-defined order to include into the pdf report. How can I save three charts as images using one JavaScript in a defined order? I use this Javascript: function SaveChartAsImage(){ var chtRURSave = getChartFromId('chtRUR'); chtRURSave.saveAsImage(); var chtRRRSave = getChartFromId('chtRRR'); chtRRRSave.saveAsImage(); var chtRCRSave = getChartFromId('chtRCR'); chtRCRSave.saveAsImage(); }; Images are saved in this order: chtRRR, then chtRUR and chtRCR.