Lasso Tool in the modal window
Hi, Is there a way to call Lasso in the modal window? JMP documentation says to press L, but it doesn't work in the modal window. Any suggestion? Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
New window("",modal,
gbp = Graph Builder(
Variables( X( :height ), Y( :weight ) ),
Elements( Points( X, Y ), Smoother( X, Y ) )
);
)
Thanks,