@LogitPorcupine1
if there is no way to access the 5 numbers in the graph and modify them i think it would be better to run somthing like this:
Open( "$SAMPLE_DATA/Big Class.jmp" );
New Window( "Box plots - Height by Age",
V List Box(
Graph Builder(
Size( 567, 640 ),
Show Control Panel( 0 ),
Fit to Window( "Off" ),
Variables( X( :age ), Y( :height ) ),
Elements( Box Plot( X, Y, Legend( 4 ) ) )
),
Tabulate(
Show Control Panel( 0 ),
Add Table(
Column Table( Grouping Columns( :age ), Analysis Columns( :height ) ),
Row Table( Statistics( Max, Quantiles( 75 ), Median, Quantiles( 25 ), Min ) )
)
)
)
);
you can modify it to fit your needs and save it as an add in for future use.
I didnt manage to access the 5 numbers from the properties if anyone knows how this may be the key to the solution