Hi,
is it possible to enable hover labels in journals for data points on charts? This would be especially useful to help users understand a colour scale, for example.
Very simple example: I create a graph builder chart using the code below. In the report window I can hover over a data point and see the value of HARDNESS, which is not easy to decode from the colour scale. However, in the journal, there's no hover label available.
![matth1_1-1694510473280.png matth1_1-1694510473280.png](https://community.jmp.com/t5/image/serverpage/image-id/56518i4CA0795206DDB8C8/image-dimensions/408x253?v=v2)
I know the actual data values for x/y/colour are included in the journal code so it feels like it should be possible.
Names Default To Here(1);
dt = Open( "$SAMPLE_DATA/Tiretread.jmp" );
gb = dt << Graph Builder(
Size( 350, 300 ),
Show Control Panel( 0 ),
Variables( X( :ABRASION ), Y( :MODULUS ), Color( :HARDNESS ) ),
Elements( Points( X, Y, Legend( 13 ) ) ),
SendToReport(
Dispatch( {}, "Graph Builder", FrameBox, {Marker Size( 6 )}
)
)
);
gb << journal;
Thanks!
I am using JMP 17.2.