Hi, my script is below.
How can I refresh my chart automatically without refreshing the entire page?
And how can I prevent the XML data from remaining in the brower's cache?
I did not modify the original FusionCharts.js file located here: "FusionCharts_EvaluationJSClassFusionCharts.js".
Thanks.
[ code ]
<?php
include("includes/FusionCharts.php");
?>
<HTML>
<HEAD>
<TITLE>
TEST
</TITLE>
<SCRIPT LANGUAGE="Javascript" SRC="js/FusionCharts.js"></SCRIPT>
</HEAD>
<BODY>
<?php
$strDataURL = encodeDataURL("Data.php?animate=1");
echo renderChart("swf/Column3D.swf", $strDataURL, "", "Graph", 600, 300, false, false);
?>
</BODY>
</HTML>
[/ code ]