Variability chart - Remove ref line
Hi
I'm trying to remove ref line from variability chart.
In previous JMP version the below script worked.
can any know why not working on JMP16.
biv = Bivariate( Y( :weight ), X( :height ), );
rbiv = biv << report;
axisbox = rbiv[axis box( 1 )];
axisbox << Add Ref Line( 90, "Dashed", blue ); //Works
axisbox << Remove Ref Line( 90 ); //Don't work
Thanks