Skip to main content

PolarDataPointWithItem Struct

Definition

Assembly:Avalonia.Controls.Charts
Package:Avalonia.Controls.Charts

Represents a polar point together with the original source item.

public struct PolarDataPointWithItem

Inheritance: ValueType -> PolarDataPointWithItem

Implements: IEquatable<PolarDataPointWithItem>

Constructors

NameDescription
PolarDataPointWithItemRepresents 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

NameDescription
DeconstructNo summary available.
Equals (2 overloads)No summary available.
GetHashCodeNo summary available.
ToStringNo 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

NameDescription
DataItemThe original item from the series data source.
PointThe 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; }

Point Property

The polar point, where X is angle and Y is radius.

public Avalonia.Point Point { get; set; }