Skip to main content

Struct AxisTick<T>

Namespace: VelloSharp.Charting.Ticks
Assembly: VelloSharp.Charting.dll

Represents an axis tick with associated domain value and normalized position.

public readonly record struct AxisTick<T> : IEquatable<AxisTick<T>>

Type Parameters

T

Implements

IEquatable<AxisTick<T>>

Inherited Members

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

Constructors

AxisTick(T, double, string)

Represents an axis tick with associated domain value and normalized position.

public AxisTick(T Value, double UnitPosition, string Label)

Parameters

Value T

UnitPosition double

Label string

Properties

Label

public string Label { get; init; }

Property Value

string

UnitPosition

public double UnitPosition { get; init; }

Property Value

double

Value

public T Value { get; init; }

Property Value

T