LindaF

Members
  • Content count

    1
  • Joined

  • Last visited

Everything posted by LindaF

  1. I am new to FusionCharts. We are using the javascript version, but I would like to write some jQuery to capture the DrawComplete event. It doesn't seem to be firing, so I think that might syntax is incorrect. Can anyone give me an idea of what's wrong here? See the code below. Thanks in advance for your help $(document).ready(function () { // alert($("#rootcontainer").html()); $("#MyChartContainer").bind("DrawComplete", function (eventObject, argumentsObject) { alert("chart has been drawn"); }); });