Sign in to follow this  
leonkelly

"Error in Loading Data" in FireFox but not IE

Recommended Posts

I'm using FusionCharts v3 & the setDataURL method. In IE6 & 7 everything seems to be working fine, although for some users here in the office they are getting the same error as we are all getting in FireFox & Safari.

Here's my JavaScript:

var chart1 = new FusionCharts("charts/StackedColumn2D.swf?noCache=" + new Date().getMilliseconds(), "chart1swf", 800, 300, "0", "0", "f5f5f5");

 chart1.setDataURL(data/con_1h.xml);  

 chart1.setTransparent(true);

 chart1.render("chartConn");

 var chart2 = new FusionCharts("charts/StackedColumn2D.swf?noCache=" + new Date().getMilliseconds(), "chart2swf", 800, 300, "0", "0", "f5f5f5");

 chart2.setDataURL(data/in_1h.xml);  

 chart2.setTransparent(true);

 chart2.render("chartIn");

& I've placed one of the sample XML files here: http://www.clientroom.net/client/dashboard/data/con_1h.xml

Any assistance would be greatly appreciated!

Leon Kelly

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this