sevron Report post Posted January 23, 2013 Hi Hopefully some 1 can help I get the #06091847 error stating :- A FusionChart oject with the specified id "ChartID" already exists. Renaming it to chartobject-1 I have try renaming the object several times but always get the error I have also tried using FusionCharts("myChartId").dispose() but without any success. My code for the chart is below <script type="text/javascript"> if (GALLERY_RENDERER && GALLERY_RENDERER.search(/javascript|flash/i)==0)FusionCharts.setCurrentRenderer(GALLERY_RENDERER); var chart = new FusionCharts("res/MarkFusionCharts/FusionCharts/AngularGauge.swf", "ChartID" ,"100%", "250", "0", "1" ); chart.setJSONUrl("res/MarkFusionCharts/dialchart.json"); chart.render("overall"); </script> Thank you in advance Sevron Share this post Link to post Share on other sites
Sanjukta Report post Posted February 14, 2013 Hi, Hi Hopefully some 1 can help I get the #06091847 error stating :- A FusionChart oject with the specified id "ChartID" already exists. Renaming it to chartobject-1 I have try renaming the object several times but always get the error I have also tried using FusionCharts("myChartId").dispose() but without any success. My code for the chart is below <script type="text/javascript"> if (GALLERY_RENDERER && GALLERY_RENDERER.search(/javascript|flash/i)==0)FusionCharts.setCurrentRenderer(GALLERY_RENDERER); var chart = new FusionCharts("res/MarkFusionCharts/FusionCharts/AngularGauge.swf", "ChartID" ,"100%", "250", "0", "1" ); chart.setJSONUrl("res/MarkFusionCharts/dialchart.json"); chart.render("overall"); </script> Thank you in advance Sevron Please note that you are disposing "myChartId" whereas the chart mentioned about "ChartID" existing previously. Could you please dispose the "ChartID" instead of "myChartId" and see if this helps? Also, your code does not display the "dispose" method section. Please make sure you have included the same in your code. Hope this helps. Share this post Link to post Share on other sites