Oops, my error
You can add an Add Ref Line to your code.
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 << Add Ref Line(
108.3182, "Dashed", blue, "M mean", 2
);
axisbox << Add Ref Line(
100.9444, "Dotted", red, "F mean", 2
);
The main item you will have to add to this, is to code to extract the Control Limits. You can use
CL = :weight << get property("Control Limits");
retrieve the limits. Take a look at what is retrieved into CL, so you can determine how to parse out the limits you need.
Jim