Hi -
Hovering over data point in Interactive Html, I am expecting to see label data come through but it is not working as expected.
![uProf_0-1634917248131.png uProf_0-1634917248131.png](https://community.jmp.com/t5/image/serverpage/image-id/36919iD59A9BAD7F7D5C54/image-size/medium?v=v2&px=400)
![uProf_1-1634917366159.png uProf_1-1634917366159.png](https://community.jmp.com/t5/image/serverpage/image-id/36920iA7A031757830ABF6/image-size/medium?v=v2&px=400)
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!