Struct BOBChartPoint<TX, TY>
A single (X, Y) data point in a chart series.
public readonly struct BOBChartPoint<TX, TY>
Type Parameters
TXType of the X-axis value.
TYType 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
XTXX-axis value.
YTYY-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