QCSeries.ShowText Property

Boolean ShowText { get; set; }

Controls if control limits values are displayed. If true, CL, LCL and UCL values are displayed next to control limit line.

Returns: Boolean

Examples
using Dew.Stats.Tee;
using Steema.TeeChart;

QCSeries ser;
tChart1.Series.Clear();
tChart1.Series.Add(ser=new QCSeries());
ser.CL = 5;
ser.LCL = 12.3;
ser.UCL = 2.34;
ser.TextNumericFormat = "0.00";
ser.Chart = tChart.Chart;