PolarDataPointWithItem Struct
Definition
Represents a polar point together with the original source item.
public struct PolarDataPointWithItem
Constructors
| Name | Description |
|---|---|
| PolarDataPointWithItem | Represents a polar point together with the original source item. |
PolarDataPointWithItem Constructor
Represents a polar point together with the original source item.
public PolarDataPointWithItem(Avalonia.Point Point, object DataItem)
Parameters
Point Avalonia.Point
The polar point, where X is angle and Y is radius.
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(Avalonia.Point& Point, object& DataItem)
Parameters
Point Avalonia.Point&
DataItem object&
Equals overloads
Equals Method
public bool Equals(Avalonia.Controls.Charts.PolarDataPointWithItem other)
Parameters
other Avalonia.Controls.Charts.PolarDataPointWithItem
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 |
|---|---|
| DataItem | The original item from the series data source. |
| Point | The polar point, where X is angle and Y is radius. |
DataItem Property
The original item from the series data source.
public object DataItem { get; set; }