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