ClassBoxPlotDataPoint
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:
public class BoxPlotDataPoint : CategoricalDataPointBase, INotifyPropertyChanged
Inheritance: objectPropertyBagObjectChartNodeDataPointCategoricalDataPointBaseBoxPlotDataPoint
Implements:
Inherited Members
Constructors
BoxPlotDataPoint()
Initializes a new instance of the BoxPlotDataPoint class.
Declaration
public BoxPlotDataPoint()
Properties
IsInPlotRange
Determines whether the data point may be plotted correctly.
Declaration
public override bool IsInPlotRange { get; }
Property Value
Overrides
LowerQuartile
Gets or sets the lower quartile value associated with the point.
Declaration
[TypeConverter(typeof(StringToDoubleConverter))]
public double LowerQuartile { get; set; }
Property Value
Maximum
Gets or sets the maximum value associated with the point.
Declaration
[TypeConverter(typeof(StringToDoubleConverter))]
public double Maximum { get; set; }
Property Value
Median
Gets or sets the median value associated with the point.
Declaration
[TypeConverter(typeof(StringToDoubleConverter))]
public double Median { get; set; }
Property Value
Minimum
Gets or sets the minimum value associated with the point.
Declaration
[TypeConverter(typeof(StringToDoubleConverter))]
public double Minimum { get; set; }
Property Value
UpperQuartile
Gets or sets the upper quartile value associated with the point.
Declaration
[TypeConverter(typeof(StringToDoubleConverter))]
public double UpperQuartile { get; set; }
Property Value