BoxPlotDataPoint
Class
Defines a BoxPlotDataPoint that has a set of properties describing a single box plot.
Definition
Namespace:Telerik.Charting
Assembly:Telerik.Windows.Controls.Chart.dll
Syntax:
C#
public class BoxPlotDataPoint : CategoricalDataPointBase, INotifyPropertyChanged
Inheritance: objectPropertyBagObjectChartNodeDataPointCategoricalDataPointBaseBoxPlotDataPoint...
Implements:
Inherited Members
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:
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; }