var chart = new FusionCharts("../Charts/FCF_MSLine.swf", "ChartId", "600", "350");
chart.setDataURL("http://
chart.render("chartdiv");
As in the above case when there is a % or %25 in the dataurl, then fusion chart changes the url as shown below(by removing %; from the url) and executes it. Since the data in the URL gets changed, the chart does not get XML data to generate it.
http://
to
http://
When % or %25 is not there in the url then the URL is correct and chart gets rendered properly.
Please let me know if there is any way to overcome this issue.
Thanks,
Venkat

Back to top
MultiQuote