Skip to main content

RadarValueWithItem Struct

Definition

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

Represents a radar value together with the original source item.

public struct RadarValueWithItem

Inheritance: ValueType -> RadarValueWithItem

Implements: IEquatable<RadarValueWithItem>

Constructors

NameDescription
RadarValueWithItemRepresents a radar value together with the original source item.

RadarValueWithItem Constructor

Represents a radar value together with the original source item.

public RadarValueWithItem(double Value, object DataItem)

Parameters

Value double

The resolved radar value.

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(double& Value, object& DataItem)

Parameters

Value double&

DataItem object&

Equals overloads

Equals Method

public bool Equals(Avalonia.Controls.Charts.RadarValueWithItem other)
Parameters

other Avalonia.Controls.Charts.RadarValueWithItem

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.
ValueThe resolved radar value.

DataItem Property

The original item from the series data source.

public object DataItem { get; set; }

Value Property

The resolved radar value.

public double Value { get; set; }