|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 1/30/2008 4:42:39 PM
Posts: 4,
Visits: 4
|
|
| 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?
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: Today @ 1:08:34 AM
Posts: 2,183,
Visits: 515
|
|
Hi,
Can you give us a live URL to check it?
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 1/30/2008 4:42:39 PM
Posts: 4,
Visits: 4
|
|
Sorry its on a LAN only.
this is the display code
// 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++;
}
?>
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 1/30/2008 4:42:39 PM
Posts: 4,
Visits: 4
|
|
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
|
|
|
|