Skip to main content

Struct AxisTickInfo

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

Represents tick data prepared for rendering.

public readonly record struct AxisTickInfo : IEquatable<AxisTickInfo>

Implements

IEquatable<AxisTickInfo>

Inherited Members

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

Constructors

AxisTickInfo(object?, double, string)

Represents tick data prepared for rendering.

public AxisTickInfo(object? Value, double UnitPosition, string Label)

Parameters

Value object?

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 object? Value { get; init; }

Property Value

object?