Hi,
I'm using FusionCharts XT 3.2.2.
I am trying to configure a drill down chart. When a link is clicked, I want to open a new chart using "newchart-xml-???" in the link, but also call a custom javascript function when the same link is clicked. In other words, I would like to execute a javascript function passing it the linked chart id as soon as the linked chart has loaded.
I tried it using:
<chart>
<set label="aaa" value="111" link="newchart-xml-111 JavaScript: isJavaScriptCall=true; myJSFunction(111);" />
</chart>
or:
<chart>
<set label="aaa" value="111" link="newchart-xml-111" link="JavaScript: isJavaScriptCall=true; myJSFunction(111);" />
</chart>
Obviousy these methods do not work.
Could someone please advise me on how to do this? Is it possible?
Thanks!