CartesianDataPoint Struct
Definition
Represents a Cartesian data point resolved from a series data source.
public struct CartesianDataPoint
Constructors
| Name | Description |
|---|---|
| CartesianDataPoint | Represents a Cartesian data point resolved from a series data source. |
CartesianDataPoint Constructor
Represents a Cartesian data point resolved from a series data source.
public CartesianDataPoint(object Category, double Value)
Parameters
Category object
The category or horizontal value for the point.
Value double
The vertical value for the point.
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& Value)
Parameters
Category object&
Value double&
Equals overloads
Equals Method
public bool Equals(Avalonia.Controls.Charts.CartesianDataPoint other)
Parameters
other Avalonia.Controls.Charts.CartesianDataPoint
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. |
| Value | The vertical value for the point. |
Category Property
The category or horizontal value for the point.
public object Category { get; set; }
Value Property
The vertical value for the point.
public double Value { get; set; }