Skip to main content

Struct ChartPoint

Namespace: VelloSharp.Charting.Coordinates
Assembly: VelloSharp.Charting.dll

Represents a 2D point in chart coordinate space.

public readonly record struct ChartPoint : IEquatable<ChartPoint>

Implements

IEquatable<ChartPoint>

Inherited Members

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

Constructors

ChartPoint(double, double)

Represents a 2D point in chart coordinate space.

public ChartPoint(double X, double Y)

Parameters

X double

Y double

Properties

X

public double X { get; init; }

Property Value

double

Y

public double Y { get; init; }

Property Value

double