Skip to main content

HiloDataPoint Struct

Definition

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

Represents a high-low data point together with the original source item.

public struct HiloDataPoint

Inheritance: ValueType -> HiloDataPoint

Implements: IEquatable<HiloDataPoint>

Constructors

NameDescription
HiloDataPointRepresents a high-low data point together with the original source item.

HiloDataPoint Constructor

Represents a high-low data point together with the original source item.

public HiloDataPoint(object Category, double High, double Low, object DataItem)

Parameters

Category object

The category or horizontal value for the point.

High double

The high value for the range.

Low double

The low value for the range.

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(object& Category, double& High, double& Low, object& DataItem)

Parameters

Category object&

High double&

Low double&

DataItem object&

Equals overloads

Equals Method

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

other Avalonia.Controls.Charts.HiloDataPoint

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
CategoryThe category or horizontal value for the point.
DataItemThe original item from the series data source.
HighThe high value for the range.
LowThe low 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 high value for the range.

public double High { get; set; }

Low Property

The low value for the range.

public double Low { get; set; }