Table of Contents

Struct BOBChartPoint<TX, TY>

Namespace
BlazOrbit.Charts.Models
Assembly
BlazOrbit.Charts.dll

A single (X, Y) data point in a chart series.

public readonly struct BOBChartPoint<TX, TY>

Type Parameters

TX

Type of the X-axis value.

TY

Type of the Y-axis value.

Constructors

BOBChartPoint(TX, TY)

A single (X, Y) data point in a chart series.

public BOBChartPoint(TX X, TY Y)

Parameters

X TX

X-axis value.

Y TY

Y-axis value.

Properties

X

X-axis value.

public TX X { get; init; }

Property Value

TX

Y

Y-axis value.

public TY Y { get; init; }

Property Value

TY