Class BoxPlotDataPoint
Defines a BoxPlotDataPoint that has a set of properties describing a single box plot.
Inheritance
Inherited Members
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public class BoxPlotDataPoint : CategoricalDataPointBase, INotifyPropertyChanged, IDataPoint
Constructors
BoxPlotDataPoint()
Properties
IsInPlotRange
Determines whether the data point may be plotted correctly.
Declaration
public override bool IsInPlotRange { get; }
Property Value
System.Boolean
|
Overrides
LowerQuartile
Gets or sets the lower quartile value associated with the point.
Declaration
public double LowerQuartile { get; set; }
Property Value
System.Double
|
Maximum
Gets or sets the maximum value associated with the point.
Declaration
public double Maximum { get; set; }
Property Value
System.Double
|
Median
Gets or sets the median value associated with the point.
Declaration
public double Median { get; set; }
Property Value
System.Double
|
Minimum
Gets or sets the minimum value associated with the point.
Declaration
public double Minimum { get; set; }
Property Value
System.Double
|
UpperQuartile
Gets or sets the upper quartile value associated with the point.
Declaration
public double UpperQuartile { get; set; }
Property Value
System.Double
|