Hi @DavidLeber,
You might have more luck working with the Control Chart Builder under Analyze->Quality and Process.
If you drop your column on the y-axis it'll generate the chart and then you can inspect the JSL code from the red hot button. You'd get something like this (if you also have an x-column):
Control Chart Builder(
Show Two Shewhart Charts( 0 ),
Show Capability( 0 ),
Variables( Subgroup (:X-column here ), Y( :Y-column here ) ),
Chart( Position (1), Points( Statistic( "Individual" ) ), Limits( Sigma( "Moving Range" ) ) ),
Chart( Position( 2 ), Limits( Sigma( "Moving Range" ) ) )
);
To address your second point, just eliminate the "Poisition(1)," part and the whole section on "Chart( Position (2)....". Then you'll just get the XBar chart.
You could also go to Analyze->Quality and Process->Control Chart->Xbar, for example, depending on what you're really after.
I'm not sure I understand what you are wanting to do with your first point.
Hope this helps!,
DS