Jschart and Ajax

Posted by guillermo1 
Jschart and Ajax
July 31, 2010 10:50PM
hello all, I created a file with an xml jschart, now I'm trying to modify the xml file via ajax when the user changes a select, this works perfectly but, how to refresh the jschart at that time?
Re: Jschart and Ajax
August 01, 2010 01:54AM
Simply:
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    myChart.setDataXML('displaybenchmark.xml');
    myChart.draw();
    }

Re: Jschart and Ajax
August 06, 2010 01:52PM
Guillermo:

It's obviously a good while since you posted this, but could you elaborate a little more on how you used the xmlhttp.ReadyState in conjunction with the draw() function?

Thanks!
Sorry, you do not have permission to post/reply in this forum.