Class BoxPlot
Represents a struct, which defines a set of five values - Minimum, Maximum, LowerQuartile, UpperQuartile and Median.
Inheritance
Namespace: Telerik.Charting
Assembly: Telerik.Windows.Controls.Chart.dll
Syntax
public sealed class BoxPlot : ValueType
Constructors
BoxPlot(Double, Double, Double, Double, Double)
Initializes a new instance of the BoxPlot structure.
Declaration
public BoxPlot(double minimum, double maximum, double lowerQuartile, double upperQuartile, double median)
Parameters
System.Double
minimum
The minimum value. |
System.Double
maximum
The maximum value. |
System.Double
lowerQuartile
The lower quartile (Q1) value. |
System.Double
upperQuartile
The upper quartile (Q3) value. |
System.Double
median
The median value. |
Properties
LowerQuartile
Gets or sets the lower quartile (Q1) value.
Declaration
public double LowerQuartile { get; set; }
Property Value
System.Double
The lower quartile (Q1) value. |
Maximum
Gets or sets the maximum value.
Declaration
public double Maximum { get; set; }
Property Value
System.Double
The maximum value. |
Median
Gets or sets the median value of the box plot.
Declaration
public double Median { get; set; }
Property Value
System.Double
The median value. |
Minimum
Gets or sets the minimum value.
Declaration
public double Minimum { get; set; }
Property Value
System.Double
The minimum value. |
UpperQuartile
Gets or sets the upper quartile (Q3) value.
Declaration
public double UpperQuartile { get; set; }
Property Value
System.Double
The upper quartile (Q3) value. |
Methods
Equals(Object)
Determines whether the specified System.Object is equal to the current System.Object.
Declaration
public override bool Equals(object obj)
Parameters
System.Object
obj
The object to compare with the current object. |
Returns
System.Boolean
True if the specified System.Object is equal to the current System.Object; otherwise, false. |
Equals(BoxPlot)
Declaration
public bool Equals(BoxPlot obj)
Parameters
BoxPlot
obj
The object to compare with the current object. |
Returns
System.Boolean
True if the specified BoxPlot is equal to the current BoxPlot; otherwise, false. |
GetHashCode()
Serves as a hash function for a particular type.
Declaration
public override int GetHashCode()
Returns
System.Int32
A hash code for the current System.Object. |
Operators
Equality(BoxPlot, BoxPlot)
Implements the operator ==.
Declaration
public static bool operator ==(BoxPlot boxPlot1, BoxPlot boxPlot2)
Parameters
BoxPlot
boxPlot1
The first BoxPlot struct. |
BoxPlot
boxPlot2
The second BoxPlot struct. |
Returns
System.Boolean
The result of the operator. |
Inequality(BoxPlot, BoxPlot)
Implements the operator !=.
Declaration
public static bool operator !=(BoxPlot boxPlot1, BoxPlot boxPlot2)
Parameters
BoxPlot
boxPlot1
The first BoxPlot struct. |
BoxPlot
boxPlot2
The second BoxPlot struct. |
Returns
System.Boolean
The result of the operator. |