New to Telerik UI for WPFStart a free 30-day trial

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

Definition

Constructors

Initializes a new instance of the BoxPlotDataPoint class.

C#
public BoxPlotDataPoint()

Properties

Determines whether the data point may be plotted correctly.

C#
public override bool IsInPlotRange { get; }

Overrides: CategoricalDataPointBase.IsInPlotRange

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

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double LowerQuartile { get; set; }

Gets or sets the maximum value associated with the point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double Maximum { get; set; }

Gets or sets the median value associated with the point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double Median { get; set; }

Gets or sets the minimum value associated with the point.

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double Minimum { get; set; }

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

C#
[TypeConverter(typeof(StringToDoubleConverter))]
public double UpperQuartile { get; set; }