HiloDataPoint Struct
Definition
Represents a high-low data point together with the original source item.
public struct HiloDataPoint
Constructors
| Name | Description |
|---|---|
| HiloDataPoint | Represents a high-low data point together with the original source item. |
HiloDataPoint Constructor
Represents a high-low data point together with the original source item.
public HiloDataPoint(object Category, double High, double Low, object DataItem)
Parameters
Category object
The category or horizontal value for the point.
High double
The high value for the range.
Low double
The low value for the range.
DataItem object
The original item from the series data source.
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& High, double& Low, object& DataItem)
Parameters
Category object&
High double&
Low double&
DataItem object&
Equals overloads
Equals Method
public bool Equals(Avalonia.Controls.Charts.HiloDataPoint other)
Parameters
other Avalonia.Controls.Charts.HiloDataPoint
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. |
| DataItem | The original item from the series data source. |
| High | The high value for the range. |
| Low | The low value for the range. |
Category Property
The category or horizontal value for the point.
public object Category { get; set; }
DataItem Property
The original item from the series data source.
public object DataItem { get; set; }
High Property
The high value for the range.
public double High { get; set; }
Low Property
The low value for the range.
public double Low { get; set; }