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

BoxPlot

Struct

Represents a struct, which defines a set of five values - Minimum, Maximum, LowerQuartile, UpperQuartile and Median.

Definition

Namespace:Telerik.Charting

Assembly:Telerik.Windows.Controls.Chart.dll

Syntax:

C#
public struct BoxPlot

Inherited Members ValueType.ToString()

Constructors

Initializes a new instance of the BoxPlot structure.

C#
public BoxPlot(double minimum, double maximum, double lowerQuartile, double upperQuartile, double median)
Parameters:minimumdouble

The minimum value.

maximumdouble

The maximum value.

lowerQuartiledouble

The lower quartile (Q1) value.

upperQuartiledouble

The upper quartile (Q3) value.

mediandouble

The median value.

Properties

Gets or sets the lower quartile (Q1) value.

C#
public double LowerQuartile { readonly get; set; }
Property Value:

The lower quartile (Q1) value.

Gets or sets the maximum value.

C#
public double Maximum { readonly get; set; }
Property Value:

The maximum value.

Gets or sets the median value of the box plot.

C#
public double Median { readonly get; set; }
Property Value:

The median value.

Gets or sets the minimum value.

C#
public double Minimum { readonly get; set; }
Property Value:

The minimum value.

Gets or sets the upper quartile (Q3) value.

C#
public double UpperQuartile { readonly get; set; }
Property Value:

The upper quartile (Q3) value.

Methods

Determines whether the specified BoxPlot is equal to the current BoxPlot.

C#
public bool Equals(BoxPlot obj)
Parameters:objBoxPlot

The object to compare with the current object.

Returns:

bool

True if the specified BoxPlot is equal to the current BoxPlot; otherwise, false.

Determines whether the specified object is equal to the current object.

C#
public override bool Equals(object obj)
Parameters:objobject

The object to compare with the current object.

Returns:

bool

True if the specified object is equal to the current object; otherwise, false.

Overrides: ValueType.Equals(object)

Serves as a hash function for a particular type.

C#
public override int GetHashCode()
Returns:

int

A hash code for the current object.

Overrides: ValueType.GetHashCode()

Operators

Implements the operator !=.

C#
public static bool operator !=(BoxPlot boxPlot1, BoxPlot boxPlot2)
Parameters:boxPlot1BoxPlot

The first BoxPlot struct.

boxPlot2BoxPlot

The second BoxPlot struct.

Returns:

bool

The result of the operator.

Implements the operator ==.

C#
public static bool operator ==(BoxPlot boxPlot1, BoxPlot boxPlot2)
Parameters:boxPlot1BoxPlot

The first BoxPlot struct.

boxPlot2BoxPlot

The second BoxPlot struct.

Returns:

bool

The result of the operator.