When you use the "control chart builder" on a column which has spec limits, those limits are plotted on both the Individual and Moving Range charts. It's useful to have the limits shown on the Individual chart, but they make no sense on the Moving Range chart and make the axis range useless.
Here's an example using data from the "Abrasion" sample data set (adding spec limits to the column before running control chart builder):
It's sometimes possible to remove the limits after the chart is created, but sometimes they reappear.
Also, I need to do this from a script--it's been difficult to determine how to access them.
Here's a script which starts with the sample data "Abrasion" already open (and spec limits added to the column "Abrasion"):
dt = Data Table("Abrasion");
dt << Control Chart Builder(
Show Control Panel(0),
Variables(X(Column("Date/Time")), Y(:Abrasion)
)
);
Does anyone know what to add to this script to remove the undesired LSL/Target/USL lines from the Moving Range chart?