ryanjmclaughlin Report post Posted January 28, 2008 For some strange reason, my charts will not load in Firefox, I just get the "Chart." in the original div, and it is not replaced by the chart. But, it works in IE.... Any ideas? Share this post Link to post Share on other sites
Pallav Report post Posted January 28, 2008 Hi, Can you give us a live URL to check it? Share this post Link to post Share on other sites
ryanjmclaughlin Report post Posted January 30, 2008 Sorry its on a LAN only. this is the display code <?php // get the data types in use $data_types = data_type_list($dept,$runID); // create a graph for each data type $i = 0; foreach ($data_types as $data_type) { //NOTE: It's necessary to encode the dataURL if you've added parameters to it $dataURL = encodeDataURL("/chart_data/temp_scatter.php?animate=0&dept=$dept&runID=$runID&data_type=$data_type"); //Create the chart echo renderChart("/charts/selectScatter.swf", $dataURL, "", "temp_graph$i", "750px", "500px", false, false); $i++; } ?> Share this post Link to post Share on other sites
ryanjmclaughlin Report post Posted January 30, 2008 Ok this is really weird, but after I rebooted the server and my computer, this seem to be working now... Guess it was a weird caching issue... Thanks Share this post Link to post Share on other sites