Struct BOBChartBubblePoint<TX, TY>
A single (X, Y, Size) data point for BOBScatterChart<TX, TY> in bubble mode. The third dimension Size is rendered as the marker radius after auto-scaling against the rest of the series. Use BOBChartPoint<TX, TY> when only X / Y matter.
public readonly struct BOBChartBubblePoint<TX, TY>
Type Parameters
TXType of the X-axis value.
TYType of the Y-axis value.
Constructors
BOBChartBubblePoint(TX, TY, double)
A single (X, Y, Size) data point for BOBScatterChart<TX, TY> in bubble mode. The third dimension Size is rendered as the marker radius after auto-scaling against the rest of the series. Use BOBChartPoint<TX, TY> when only X / Y matter.
public BOBChartBubblePoint(TX X, TY Y, double Size)
Parameters
XTXYTYSizedouble
Properties
Size
public double Size { get; init; }
Property Value
- double
X
public TX X { get; init; }
Property Value
- TX
Y
public TY Y { get; init; }
Property Value
- TY