alexmitev

Members
  • Content count

    2
  • Joined

  • Last visited

About alexmitev

  • Rank
    Forum Newbie
  1. Chart Events Not Working Locally

    Hello again, Thank you very much for your reply! Yes, changing this setting actually helps! But, is there any way to make this change programatically? The purpose I need it is, I am making a screenshot of the Fusion Chart (and I am using the Rendered event to know when it's ready to make the screenshot), so it's not desirable to need the user interaction for it. Thank you, Alex
  2. 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