CustomBoxPlot.WhiskerLength Property

Double WhiskerLength { get; set; }

Defines default multiplier for whiskers (1.5).

Returns: Double

Remarks:

Whisker length multiplier with default value 1.5.

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

tChart1.Series.Clear();
BoxPlot bp;
tChart1.Series.Add(bp = new BoxPlot());
bp.WhiskerLength = 2;
bp.Chart = tChart1.Chart;