Class
BoxPlotDataPoint

Defines a BoxPlotDataPoint that has a set of properties describing a single box plot.

Definition

Constructors

BoxPlotDataPoint()

Initializes a new instance of the BoxPlotDataPoint class.

Declaration

cs-api-definition
public BoxPlotDataPoint()

Properties

IsInPlotRange

Determines whether the data point may be plotted correctly.

Declaration

cs-api-definition
public override bool IsInPlotRange { get; }

Property Value

bool

Overrides CategoricalDataPointBase.IsInPlotRange

LowerQuartile

Gets or sets the lower quartile value associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double LowerQuartile { get; set; }

Property Value

double

Maximum

Gets or sets the maximum value associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double Maximum { get; set; }

Property Value

double

Median

Gets or sets the median value associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double Median { get; set; }

Property Value

double

Minimum

Gets or sets the minimum value associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double Minimum { get; set; }

Property Value

double

UpperQuartile

Gets or sets the upper quartile value associated with the point.

Declaration

cs-api-definition
[TypeConverter(typeof(StringToDoubleConverter))]
public double UpperQuartile { get; set; }

Property Value

double