Skip to main content

RangeDataPoint Struct

Definition

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

Represents a range data point with low and high values.

public struct RangeDataPoint

Inheritance: ValueType -> RangeDataPoint

Implements: IEquatable<RangeDataPoint>

Constructors

NameDescription
RangeDataPointRepresents a range data point with low and high values.

RangeDataPoint Constructor

Represents a range data point with low and high values.

public RangeDataPoint(object Category, double Low, double High)

Parameters

Category object

The category or horizontal value for the point.

Low double

The lower value for the range.

High double

The upper value for the range.

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& Low, double& High)

Parameters

Category object&

Low double&

High double&

Equals overloads

Equals Method

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

other Avalonia.Controls.Charts.RangeDataPoint

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.
HighThe upper value for the range.
LowThe lower value for the range.

Category Property

The category or horizontal value for the point.

public object Category { get; set; }

High Property

The upper value for the range.

public double High { get; set; }

Low Property

The lower value for the range.

public double Low { get; set; }