leonkelly Report post Posted October 12, 2008 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
Pallav Report post Posted October 14, 2008 Leon, Can you try putting the data XML file value in quotation in chart.setDataURL("data.xml"); Share this post Link to post Share on other sites
leonkelly Report post Posted October 19, 2008 That seemed to do the trick - thanks! Share this post Link to post Share on other sites