We really need a better javascript callback system from FusionCharts. FC_Rendered() is finicky and causing many headaches. What I'd really like to see is something like this:
var myChart = new FusionCharts({
settings_file:"somesettings.xml",
dataURL:"data.xml",
id:"mySpiffyChart",
width:500,
height:400,
onInit:{
animation:true,
callback: function() {
alert("this chart is has inited!");
}
},
onReload:{
animation:false,
callback: function() {
alert("this chart is has reloaded!");
}
}
});
That way I can have as many charts as I need and each one can have it's own callback instead of everyone sharing FC_Rendered()
Does that make sense? Thoughts?
Thanks,
brian