Hi @Zoe_Betteridge,
I cannot seem to replicate your issue. If you run the script below are you able to adjust those axis limits?
Names default to here(1);
dt = Open("$Sample_data/Big class.jmp");
New Column("Exp[height]", Numeric, "Continuous", Format("Best", 12), Formula(Exp(:height / 20)));
New Column("Exp[weight]", Numeric, "Continuous", Format("Best", 12), Formula(Exp(:weight / 20)));
Graph Builder(
Size( 763, 619 ),
Show Control Panel( 0 ),
Variables(
X( :name ),
Y( :"Exp[height]"n ),
Y( :"Exp[weight]"n, Position( 1 ) )
),
Elements( Line( X, Y( 1 ), Y( 2 ), Legend( 4 ) ) ),
SendToReport(
Dispatch(
{},
"Exp[height]",
ScaleBox,
{Scale( "Log" ), Format( "Best", 6 ), Min( 1.07137524526672 ),
Max( 3564457.95421388 ), Inc( 1 ), Minor Ticks( 0 ),
Add Ref Line( 100000, "Solid", "Black", "a", 1 ),
Add Ref Line( 1000000, "Solid", "Black", "b", 1 )}
)
)
);