Hello,
Sometimes dataset may contain overlapping points. Default mouse over hover gridlet is showing the number of overlapping points (N) and some other information (see example image below from big class.jmp dataset).
I am interested in to get this information also be utilized in textlet or graphet script. How do I get hovered rows to list? I can use following syntax for selected rows but well, hovering does not make selection. And as far as I know, there is not "Get hovered rows" function. Any suggestions?
selected_rows = as list(dt << get selected rows);
Following returns the first row of the overlapped rows. How can I reference to underlaying data point(s) eg in For-loops?
:height[local:_firstRow]
Following, as part of textlet, returns number of underlaying rows but as far as I know, does not return the rows eg as a list.
<b>Underlying Rows</b>: {local:_underlyingRows}
I have tried to read the following chapter carefully but I cannot find solution to my question:
Scripting Guide > Scripting Graphs > Hover Labels > Work with the Hover Label Execution Context
So far I have come over this by using jitter to avoid overlapping points but I am sure that there is better way to do this. Thanks for your advices!
Janne