Skip to main content

ErrorBarDataPoint Struct

Definition

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

Represents a data point with error values.

public struct ErrorBarDataPoint

Inheritance: ValueType -> ErrorBarDataPoint

Properties

NameDescription
CategoryGets or sets the category identifier.
DataItemGets or sets the original data item.
HighErrorGets or sets the upper error magnitude.
LowErrorGets or sets the lower error magnitude.
ValueGets 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; }