It appears that prior to JMP 16, the Show Limits option is not honored by the Fit Curve platform. However, in JMP 16 it is
![txnelson_0-1628244143992.png txnelson_0-1628244143992.png](https://community.jmp.com/t5/image/serverpage/image-id/34796i8D633C2ECBC6E102/image-size/medium?v=v2&px=400)
You will have to add the reference lines programmatically until you upgrade to JMP 16.
Names Default To Here( 1 );
dt = Open( "$sample_data/semiconductor capability.jmp" );
fc = Fit Curve(
Y( :NPN1 ),
X( :PNP1 ),
SendToReport(
Dispatch(
{"Plot"},
"5",
ScaleBox,
{Min( 103.62 ), Max( 128 ), Inc( 5 ), Minor Ticks( 1 )}
)
)
);
spec = :NPN1 << get property( "spec limits" );
fcr = fc << report;
fcr[axisbox( 1 )] << add ref line( spec["LSL"], solid, blue, "LSL" );
fcr[axisbox( 1 )] << add ref line( spec["Target"], solid, blue, "Target" );
fcr[axisbox( 1 )] << add ref line( spec["USL"], solid, blue, "USL" );
![txnelson_1-1628244765215.png txnelson_1-1628244765215.png](https://community.jmp.com/t5/image/serverpage/image-id/34797i9A36E7D76803CC41/image-size/medium?v=v2&px=400)
Jim