BoxPlotDataPoint Struct
Definition
Represents a single box plot data point.
public struct BoxPlotDataPoint
Properties
| Name | Description |
|---|---|
| Category | Gets or sets the category identifier. |
| DataItem | Gets or sets the original data item. |
| HasFiniteValues | Gets whether all values required to draw the box plot are finite. |
| Max | Gets or sets the maximum value. |
| Median | Gets or sets the median value (50th percentile). |
| Min | Gets or sets the minimum value. |
| Q1 | Gets or sets the first quartile (25th percentile). |
| Q3 | Gets 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; }