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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

How to show custom tooltip using HTML5 chart in APEX 5.0.4?

Blue BirdMar 20 2018 — edited Mar 21 2018

I have a problem and I don't know how to solve it and I would need some help. I still use APEX 5.0.4 (in 5.1.x I know how to do this).

Let's say I have a simple query for a HTML5 Line chart:

Select

  Null Link

,EName Label

,Sal Value

From

  Emp;

Now I would like to add tooltip (when you put mouse on a point) which will show this e.g. (two other columns from this table, eg. for EmpNo 7698 - Black):

Job: Manager

DeptNo: 30

So I would like to have something like this:

Select

  Null Link

,EName Label

,Sal Value

,'Job: ' || Job || Chr(10) ||

  'DeptNo: ' || DeptNo ToolTip

From

  Emp;

and use my custom Tooltip column instead of classic displayed Label - Value pair. How can I implement such tooltip which show custom columns not visible in the chart?

BB

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 18 2018
Added on Mar 20 2018
14 comments
1,667 views