Sign in to follow this  
mrmeyers99

IE7 setDataXML endless loop

Recommended Posts

I am trying to use setDataXML with a chart, and in Chrome/Firefox it works fine, but in IE it goes into an endless loop. It happens in this section:

 


var chartObj = infosoftglobal.FusionChartsUtil.getChartObject(this.getAttribute('id'));

chartObj.setDataXML(strDataXML);

 

 

 

I changed it to this:

 


var chartObj = infosoftglobal.FusionChartsUtil.getChartObject(this.getAttribute('id'));

strDataXML += "*";

alert(strDataXML);

chartObj.setDataXML(strDataXML);

 

and it just keeps calling itself. Is it supposed to be calling something else?

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