If I want to add some interactivity to the chart that I created with Apex I need to add an event listener like this:
var chart = new AnyChart();
chart.addEventListener('pointClick', onPointClick);
But I am using the wizard chart created from the APEX GUI, so I did not create the anychart object in my code such as
I would have to know the object name that was created for my chart by APEX.
Then I could code :
OBJECTNAMECREATEDBYAPEX.addEventListener('pointClick', onPointClick);
Can anyone help?
Thank you.
Carlos