HorizBoxPlot Class

Source: BoxPlot.cs · Assembly: Dew.Stats.Tee
PointsCustomBoxPlotHorizBoxPlot

public class HorizBoxPlot : CustomBoxPlot

Horizontal box plot.

Examples

csharp
using Dew.Stats.Tee;
using Dew.Math;
using Dew.Math.Tee;

Vector v = new Vector(100);
v.RandGauss();
v.SortAscending();
HorizBoxPlot bp;
tChart1.Series.Clear();
tChart1.Series.Add(bp = new HorizBoxPlot());
bp.MildOutlier.Width = 3;
bp.MildOutlier.Height = 3;
MtxVecTee.DrawValues(v,bp,0,1,false);

Properties

NameTypeDescription
AdjacentPoint1DoubleIf set, defines lower adjacent point.
AdjacentPoint3DoubleIf set, defines upper adjacent point.
BoxSeriesPointerControls the appearance of CustomBoxSeries box.
DescriptionString
ExtremeOutlierSeriesPointerExtreme outlier point properties.
InnerFence1DoubleIf set, defines lower inner fence.
InnerFence3DoubleIf set, defines upper inner fence.
MeanDoubleIf set, defines mean value.
MeanPenChartPenControls mean pen properties.
MedianDoubleIf set, defines median value.
MedianPenChartPenControls median pen properties.
MildOutlierSeriesPointerMild outlier point properties.
NumGallerySeriesInt32
OuterFence1DoubleIf set, defines lower outer fence.
OuterFence3DoubleIf set, defines upper outer fence.
PlotStyleBoxPlotStyleDefines box visual appearance.
PositionDoubleControls the position of box plot.
Q1DoubleIf set, defines Q1.
Q3DoubleIf set, defines Q3.
UseCustomValuesBooleanIf true, user supplied values for all box plot parameters are used.
WhiskerLengthDoubleDefines default multiplier for whiskers (1.5).
WhiskerPenChartPenControls whisker line pen properties.

Methods

NameDescription
AddAdd an array of double values in one call.
ctor (2)
Draw
DrawValueCalled for each point in value list.
MaxXValue
MaxYValueReturns the Maximum Value of the Series Y Values List.
MinXValue
MinYValueReturns the Minimum Value of the Series Y Values List.
PrepareForGallery