Are you asking about the large empty region at the right of the graph?
extra space at right end of X axis?
It does seem to have a scrolling behavior that might be trying to show about 10 as more rows are added to the table. If you don't get other answers here, try the tech support link at the bottom of the page.
dt =
New Table( "Imported Data",
New Column( "X", Character, "Nominal", Set Values( {"A", "B", "C", "D", "E"} ) ),
New Column( "Y2", Numeric, "Continuous", Format( "Best", 12 ), Set Values( [9, 9, 9, 9, 9] ) ),
New Column( "Y", Numeric, "Continuous", Format( "Best", 12 ), Set Values( [8, 7, 6, 5, 4] ) )
);
//New Table( "Imported Data",
// New Column( "X", Character, "Nominal", Set Values( {"A", "B", "C", "D", "E", "f", "g", "h", "i", "j", "k"} ) ),
// New Column( "Y2", Numeric, "Continuous", Format( "Best", 12 ), Set Values( [9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9] ) ),
// New Column( "Y", Numeric, "Continuous", Format( "Best", 12 ), Set Values( [8, 7, 6, 5, 4, 8, 7, 6, 5, 4, 3] ) )
//);
dt << Control Chart(
Sample Label( :X ),
Sample Size( :Y2 ),
KSigma( 1 ),
Sort by Row Order( 1 ),
Chart Col( :"Y"n, P( Test Beyond Limits( 1 ), Limits Precision( 1 ) ) )
);
Craige