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