Skip to main content

BoxPlotDataPoint Struct

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Represents a single box plot data point.

public struct BoxPlotDataPoint

Inheritance: ValueType -> BoxPlotDataPoint

Properties

NameDescription
CategoryGets or sets the category identifier.
DataItemGets or sets the original data item.
HasFiniteValuesGets whether all values required to draw the box plot are finite.
MaxGets or sets the maximum value.
MedianGets or sets the median value (50th percentile).
MinGets or sets the minimum value.
Q1Gets or sets the first quartile (25th percentile).
Q3Gets or sets the third quartile (75th percentile).

Category Property

Gets or sets the category identifier.

public object Category { get; set; }

DataItem Property

Gets or sets the original data item.

public object DataItem { get; set; }

HasFiniteValues Property

Gets whether all values required to draw the box plot are finite.

public bool HasFiniteValues { get; set; }

Max Property

Gets or sets the maximum value.

public double Max { get; set; }

Median Property

Gets or sets the median value (50th percentile).

public double Median { get; set; }

Min Property

Gets or sets the minimum value.

public double Min { get; set; }

Q1 Property

Gets or sets the first quartile (25th percentile).

public double Q1 { get; set; }

Q3 Property

Gets or sets the third quartile (75th percentile).

public double Q3 { get; set; }