Table of Contents

Class BOBChartBubbleSeries<TX, TY>

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

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

TX

Type of the X-axis values.

TY

Type of the Y-axis values.

Inheritance
object
BOBChartBubbleSeries<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>>