The chart is created dynamically on user generated event. Once the chart is created, the screen data (unicode - utf 8) gets corrputed - the user sees junk characters. This behaviour is seen consistently when the chart gets created.
We confirmed the problem with Fusioncharts by removing the chart control from the action script and verified that the application data is shown correctly in flex controls.
Not sure if Fusion charts supports unicode data. If so, why are we getting this problem.
The as code below shows the creation logic:
{
....
var fus:FusionCharts = new FusionCharts();
fus.width = 900;
fus.height = 300;
fus.FCChartType="MSColumnLine3D";
fus.FCDataXML = event.result.toString();
this.ChartSection.removeChildAt(0); //remove label control..
this.ChartSection.addChild(fus);
...
}
Is there some help?

Back to top
MultiQuote

