Get Y axis column name from the variability chart
Hi, Is there a way to get the Y axis column name from the variability? I tried using get Y axis but doesn't work. Any suggestions?Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Variability Data/2 Factors Crossed.jmp" );
obj = dt << Variability Chart( Y( :Measurement ), X( :Operator, :part# ) );
ax = obj << get y axis;
Show( ax );
chart