Nathaniel,
It is not possible to add labels to the right of the Control Chart Builder chart. The reason is that JMP does not provide a frame box to write to, like it does for the general purpose XBar chart. However, you can add specialized labels to the left of the chart by adding reference lines. See the script below. The script below also creates a journal with the individuals chart.
Names Default To
Here( 1 );
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );
ccb = dt << Control Chart Builder(
Size( 534, 453 ),
Show Control Panel( 0 ),
Show Limit Summaries( 0 ),
Variables( Y( :NPN1 ) ),
Chart( Position( 1 ), Limits ),
Chart( Position( 2 ) ),
SendToReport(
Dispatch(
{},
"NPN1",
ScaleBox,
{Add Ref Line( 104.412948990151, "Solid", "Blue", "LSL", 1 ),
Add Ref Line( 131.893493064355, "Solid", "Blue", "USL", 1 ),
Add Ref Line( 118.153221027253, "Solid", "Blue", "Target", 1 ),
Add Ref Line( 122.689, "Solid", "Red", "UCL", 1 )}
)
)
);
NW = New Window( "The Journal", <<journal, vlb = V List Box() );
ccb( report ) << journal;
Jim