How can I output the graph in the same window as the button?
When I write the command to output the graph in the button, it actually outputs in a new window. What should I do to output the graph in the same window (as shown in the figure below)? Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw2 = New Window( "New window",
outputG = Button Box( "Output Graph",
Outline Box( "Graph Output",
Bivariate( y( :weight ), x( :height ) )
...