How can I highlight data points when clicking on legend in interactive HTML?
I have a bivariate chart saved as interactive HTML. I would like to be able to select a legend and highlight points on the chart. Is it possible to do this using JSL? This is the chart after saving as interactive HTML. Here is the JSL script: Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = dt << Bivariate(
Y( :height ),
X( :weight ),
SendToReport(
Dispatch(
...