Thank you for your reply. Yes, I know that. I think I handled that by setting a boolean in the FC_Rendered function, so setDataXML only gets called once the chart has rendered. Maybe I'm just doing something silly, but I just cannot figure out why it's doing this. I'll attach a snippet of my code:
function FC_Rendered(DOMId){
chartReady=true;
}
function updateChart(chartID, urlSuffix) {
$('#'+chartID+'ChildContainer').dialog('open');
if(chartReady) {
var strURL = "includes/php/data/drilldown/data_"+chartID+"Child.php" + urlSuffix;
var chartObj = getChartFromId(chartID+"Child");
jQuery.get(strURL, function(data) {
chartObj.setDataXML(data);
});
}
else
setTimeout ( function() {
updateChart(date);
},100);
}
Again, this works flawlessly in Firefox, but IE always throws that error.
On a side not, thanks to the FC team, I really enjoy working with your software, and it has met most of our needs quite well. Keep up the good work.
Brent