Here is the example given in the Help==>Scripting Index, for Axis Box:
Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = Bivariate(
Y( :weight ),
X( :height ),
FitLine
);
rbiv = biv << report;
axisbox = rbiv[axis box( 1 )];
axisbox << Get Max;
You can also "Add Graphics Script" and in it check the yorigin and/or xorigin, along with the x and y range to trigger action taken when the axes are changed.
Jim