dlacopo Report post Posted September 26, 2008 (edited) 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 ] Edited September 26, 2008 by Guest Share this post Link to post Share on other sites
Arindam Report post Posted September 27, 2008 Hi, Could you please see attachment for example of real time chart with Column3D? RealChartwithColumn3D.zip Share this post Link to post Share on other sites
dlacopo Report post Posted September 29, 2008 Does this only apply to Column3D charts or to all charts? If I have multiple charts on the same page, how can I get the script to refresh all the charts? Thanks. Share this post Link to post Share on other sites
Arindam Report post Posted September 30, 2008 Hi, This program is applicable for all FusionCharts. For multiple charts refreshing you have to use JavaScript. Please see the javascript section. Could you please use setDataXML method for that? Share this post Link to post Share on other sites