One can easily change the size of the graph's frame box. This example creates a simple graph using Graph Builder, Then, after the graph has been created, the JSL
current report()[framebox(1)]<<frame size(600,600);
is run to change the size of the graph.
Full Example:
names default to here(1);
// Open Data Table: big class.jmp
// → Data Table( "big class" )
Open( "$SAMPLE_DATA/big class.jmp" );
Graph Builder(
Size( 525, 454 ),
Show Control Panel( 0 ),
Variables( X( :weight ), Y( :height ) ),
Elements( Points( X, Y, Legend( 3 ) ), Smoother( X, Y, Legend( 4 ) ) )
);
wait(5);
// Change the graph size
current report()[framebox(1)]<<frame size(600,600);
Jim