How to add JSL to "Big Class.jmp" graphics using Hover Labels?
Start with the following JSL to generate the graph.
How to add JSL through Hover Labels to get cell name data Get "Big Class Families" file corresponding name data?dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
p1 = dt << Graph Builder(
Variables( X( :weight ), Y( :height ), Group X( :age ), Color( :sex ) ),
Elements( Bar( X, Y, Legend( 5 ), Response Axis( "X" ) ) )
);