import Report post Posted December 18, 2009 In IE, I use the function setDataXML () a second assignment find our of memory, but in Firefox it is OK? Share this post Link to post Share on other sites
Guest Basundhara Ghosal Report post Posted December 18, 2009 Hi, Welcome to FusionCharts Forum. Could you please the issue a bit elaborately? Awaiting your reply. :hehe: Share this post Link to post Share on other sites
import Report post Posted December 18, 2009 (edited) this is my code ,when I click click of this page in IE,i find out of menory ?but it is ok in firefox. like: http://www.fusioncharts.com/forum/Topic9790-35-1.aspx myCode.txt Edited December 18, 2009 by Guest Share this post Link to post Share on other sites
FusionCharts Support Report post Posted December 19, 2009 Hi, The code that you have sent is using same identifier (name) for the chart JavaScritp Id as well as chart DOMId. var myChartId3 = new FusionCharts("/wee/wee/fusioncharts/Charts/Pie2D.swf","myChartId3","600","400","0","1"); Could you please keep them unique and different? e.g. var myChartId3Obj = new FusionCharts("/wee/wee/fusioncharts/Charts/Pie2D.swf","myChartId3","600","400","0","1"); myChartId3Obj.setDataXML(..."); myChartId3Obj.render("chartdiv3"); Share this post Link to post Share on other sites