Hi -
Hovering over data point in Interactive Html, I am expecting to see label data come through but it is not working as expected.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw = New Window( "Journal_1", <<journal, vlb = V List Box() );
gb = Graph Builder(
Size( 529, 466 ),
Show Control Panel( 0 ),
Automatic Recalc( 0 ),
Variables( X( :name ), Y( :height ) ),
Elements( Smoother( X, Y, Legend( 9 ) ), Points( X, Y, Legend( 10 ) ) )
);
vlb << append( report( gb ) );
nw << save Interactive HTML( "$TEMP\test.html" );
open( "$TEMP\test.html" );
Using Jmp 12.2. Am I missing any setting? Appreciate feedback.
Thanks!