RangeDataPoint Struct
Definition
Represents a range data point with low and high values.
public struct RangeDataPoint
Constructors
| Name | Description |
|---|---|
| RangeDataPoint | Represents a range data point with low and high values. |
RangeDataPoint Constructor
Represents a range data point with low and high values.
public RangeDataPoint(object Category, double Low, double High)
Parameters
Category object
The category or horizontal value for the point.
Low double
The lower value for the range.
High double
The upper value for the range.
Methods
| Name | Description |
|---|---|
| Deconstruct | No summary available. |
| Equals (2 overloads) | No summary available. |
| GetHashCode | No summary available. |
| ToString | No summary available. |
Deconstruct Method
public void Deconstruct(object& Category, double& Low, double& High)
Parameters
Category object&
Low double&
High double&
Equals overloads
Equals Method
public bool Equals(Avalonia.Controls.Charts.RangeDataPoint other)
Parameters
other Avalonia.Controls.Charts.RangeDataPoint
Returns
bool
Equals Method
public bool Equals(object obj)
Parameters
obj object
Returns
bool
GetHashCode Method
public int GetHashCode()
Returns
int
ToString Method
public string ToString()
Returns
string
Properties
| Name | Description |
|---|---|
| Category | The category or horizontal value for the point. |
| High | The upper value for the range. |
| Low | The lower value for the range. |
Category Property
The category or horizontal value for the point.
public object Category { get; set; }
High Property
The upper value for the range.
public double High { get; set; }
Low Property
The lower value for the range.
public double Low { get; set; }