Hello,
I was testing chart events (for example the Rendered event at http://www.wipesoft.nl/wipesoft/FusionCharts_Evaluation/Code/JavaScript/Basics/Events/Rendered.html) With the example on the server, all works fine.
However, I tried to reproduce the example locally. I downloaded the swf and xml files locally, so now the script looks like:
var myChart = new FusionCharts("Column3D.swf", "myChartId", "400", "300", "1", "1" );
myChart.setXMLUrl("Data.xml");
myChart.render("chartContainer");
function FC_Rendered(DOMId) {
alert ( DOMId + " chart has been rendered." );
}
But now I don't get the rendered event!
I am using IE8 on WinXP.
Can you tell me what am I doing wrong?
Alex