Hi,
With the Graph Builder (or any other way) , is it possible to define the Font size of the legend ?
Below the size of the graph is "Size( 454, 472 ) ", but if I reduce to size to (200,200) the legend is still as big as it is for ( 454, 472) ! Is it possible also to define the size of the legends?
Thanks
open("$sample_data\Big class.jmp");
Graph Builder(
Size( 454, 472 ),
Show Control Panel( 0 ),
Variables( X( :age ), Y( :weight ), Y( :height ), Overlay( :name ) ),
Elements( Position( 1, 1 ), Points( X, Y, Legend( 3 ), Jitter( 1 ) ) ),
Elements( Position( 1, 2 ), Points( X, Y, Legend( 4 ), Jitter( 1 ) ) )
);