Sign in to follow this  
sevron

Error Code #06091847 Id Already Exists

Recommended Posts

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

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

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