Hi FusionCharts Team,
I am creating dashboard using fusion charts.. i m getting values from database into an xml file successfully but, the chart is displaying successfully for the first time and for the second time the chart is displaying with the previous values only even though the xml file content is changed from the database...
This is the script used in JSP File
<div id="chartdiv" align="center">
</div>
<script type="text/javascript">
var chart = new FusionCharts("../Charts/FCF_MSColumn3D.swf", "ChartId", "600", "350","0","1");
chart.setDataURL("../Data/MSColumn3D.xml");
chart.render("chartdiv");
</script> </td>