ErrorBarDataPoint Struct
Definition
Represents a data point with error values.
public struct ErrorBarDataPoint
Properties
| Name | Description |
|---|---|
| Category | Gets or sets the category identifier. |
| DataItem | Gets or sets the original data item. |
| HighError | Gets or sets the upper error magnitude. |
| LowError | Gets or sets the lower error magnitude. |
| Value | Gets or sets the central value. |
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; }
HighError Property
Gets or sets the upper error magnitude.
public double HighError { get; set; }
LowError Property
Gets or sets the lower error magnitude.
public double LowError { get; set; }
Value Property
Gets or sets the central value.
public double Value { get; set; }