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.
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.