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