Preferences( Fast Marker Threshold( 25000 ) ); // 50000 is the default.
SendToReport(
Dispatch(
{"Fit Life by X - Hours BY Arrhenius Celsius (Temp) Regression "},
"Scatterplot",
OutlineBox,
{Close( 1 )}
),
•
|
Construct your display boxes outside New Window() and then include them by reference in New Window(). This method saves the drawing until the end.
|
tb = Text Box( "Select:" );
lb = List Box( {"One", "Two", "Three"} );
New Window( "test", tb, lb );
dt= Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = Bivariate( Y( :Weight ), X( :Height ) );
obj << Show Window( 0 ); // hide the window
obj << Fit Line( {Confid Curves Fit( 1 )} );
obj << Show Window( 1 );