Here is a partial script to solve what you want. I have only displayed 2 of the Spec limits lines, but the addition of the other lines is just a repeat of the JSL, just changing the coordinates and text.
Names Default To Here( 1 );
dt = Current Data Table();
gb = Graph Builder(
Size( 528, 448 ),
Show Control Panel( 0 ),
Variables( X( :Label ), Y( :Data ), Color( :Label ) ),
Elements( Box Plot( X, Y, Legend( 11 ) ), Contour( X, Y, Legend( 12 ) ) ),
SendToReport(
Dispatch(
{},
"Data",
ScaleBox,
{Format( "Best", 12 ), Min( -86.4411315121441 ), Max( 58.2086540147458 ), Inc( 20 ),
Minor Ticks( 1 )}
)
)
);
Report( gb )[framebox( 1 )] << add graphics script(
Pen Color( "blue" );
Line( [-.5 .5], [-45 -45] );
Text( {-.45, -40, 0, -42}, "LCL -45" );
Line( [.5 1.5], [-50 -50] );
Text( {.55, -45, 1, -47}, "LCL 50" );
);
Jim