Struct
BoxPlot

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:

cs-api-definition
public struct BoxPlot

Inherited Members ValueType.ToString()

Constructors

BoxPlot(double, double, double, double, double)

Initializes a new instance of the BoxPlot structure.

Declaration

cs-api-definition
public BoxPlot(double minimum, double maximum, double lowerQuartile, double upperQuartile, double median)

Parameters

minimum

double

The minimum value.

maximum

double

The maximum value.

lowerQuartile

double

The lower quartile (Q1) value.

upperQuartile

double

The upper quartile (Q3) value.

median

double

The median value.

Properties

LowerQuartile

Gets or sets the lower quartile (Q1) value.

Declaration

cs-api-definition
public double LowerQuartile { readonly get; set; }

Property Value

double

The lower quartile (Q1) value.

Maximum

Gets or sets the maximum value.

Declaration

cs-api-definition
public double Maximum { readonly get; set; }

Property Value

double

The maximum value.

Median

Gets or sets the median value of the box plot.

Declaration

cs-api-definition
public double Median { readonly get; set; }

Property Value

double

The median value.

Minimum

Gets or sets the minimum value.

Declaration

cs-api-definition
public double Minimum { readonly get; set; }

Property Value

double

The minimum value.

UpperQuartile

Gets or sets the upper quartile (Q3) value.

Declaration

cs-api-definition
public double UpperQuartile { readonly get; set; }

Property Value

double

The upper quartile (Q3) value.

Methods

Equals(BoxPlot)

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

Declaration

cs-api-definition
public bool Equals(BoxPlot obj)

Parameters

obj

BoxPlot

The object to compare with the current object.

Returns

bool

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

Equals(object)

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

Declaration

cs-api-definition
public override bool Equals(object obj)

Parameters

obj

object

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)

GetHashCode()

Serves as a hash function for a particular type.

Declaration

cs-api-definition
public override int GetHashCode()

Returns

int

A hash code for the current object.

Overrides ValueType.GetHashCode()

Operators

operator !=(BoxPlot, BoxPlot)

Implements the operator !=.

Declaration

cs-api-definition
public static bool operator !=(BoxPlot boxPlot1, BoxPlot boxPlot2)

Parameters

boxPlot1

BoxPlot

The first BoxPlot struct.

boxPlot2

BoxPlot

The second BoxPlot struct.

Returns

bool

The result of the operator.

operator ==(BoxPlot, BoxPlot)

Implements the operator ==.

Declaration

cs-api-definition
public static bool operator ==(BoxPlot boxPlot1, BoxPlot boxPlot2)

Parameters

boxPlot1

BoxPlot

The first BoxPlot struct.

boxPlot2

BoxPlot

The second BoxPlot struct.

Returns

bool

The result of the operator.