Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Apex 4.2 anychart flash, add

Carlos SantosFeb 21 2014 — edited Feb 24 2014

If I want to add some interactivity to the chart that I created with Apex I need to add an event listener like this:

// Create new chart

var chart = new AnyChart();

// Add event handler for point event

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

This post has been answered by Tom Petrus on Feb 24 2014
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 24 2014
Added on Feb 21 2014
3 comments
442 views