CuSum chart name
Hi there, Can someone tell me how to change a CuSum chart name in JSL ? in the below JSL example Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Quality Control/Oil1 Cusum.jmp" );
obj = dt << Control Chart(
Sample Size( :hour ),
H( 2 ),
Chart Col(
:weight,
CUSUM( Two sided( 1 ), Target( 8.1 ), Delta( 1 ), Sigma( 0.05 ), Head Start( 0.05 ) )
),
Chart Type( CUSUM ),
);
The chart nam...