dlacopo

Members
  • Content count

    2
  • Joined

  • Last visited

About dlacopo

  • Rank
    Forum Newbie
  1. 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.
  2. 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 ]