Class BOBChartBubbleSeries<TX, TY>
A named, typed sequence of BOBChartBubblePoint<TX, TY> data
for BOBScatterChart<TX, TY> in bubble mode.
Pass via the chart's BubbleSeries parameter; the chart auto-scales
the per-point Size across the
series into pixel radii bounded by BubbleMinRadius /
BubbleMaxRadius.
public sealed class BOBChartBubbleSeries<TX, TY>
Type Parameters
TXType of the X-axis values.
TYType of the Y-axis values.
- Inheritance
-
objectBOBChartBubbleSeries<TX, TY>
Constructors
BOBChartBubbleSeries()
public BOBChartBubbleSeries()
Properties
Color
Optional explicit color for the series. When null the color is
drawn from the active palette in declaration order.
public string? Color { get; init; }
Property Value
- string
Label
Display name (legend, tooltip, ARIA).
public string Label { get; init; }
Property Value
- string
Points
The bubble points, in plot order.
public IEnumerable<BOBChartBubblePoint<TX, TY>> Points { get; init; }
Property Value
- IEnumerable<BOBChartBubblePoint<TX, TY>>