Struct ChartDataPoint<TX, TY>
Namespace: VelloSharp.Charting.Coordinates
Assembly: VelloSharp.Charting.dll
Represents a pair of values in the data domain.
public readonly record struct ChartDataPoint<TX, TY> : IEquatable<ChartDataPoint<TX, TY>>
Type Parameters
TX
TY
Implements
IEquatable<ChartDataPoint<TX, TY>>
Inherited Members
object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()
Constructors
ChartDataPoint(TX, TY)
Represents a pair of values in the data domain.
public ChartDataPoint(TX X, TY Y)
Parameters
X
TX
Y
TY
Properties
X
public TX X { get; init; }
Property Value
TX
Y
public TY Y { get; init; }
Property Value
TY