Table of Contents

Struct BOBChartBubblePoint<TX, TY>

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

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

TX

Type of the X-axis value.

TY

Type 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

X TX
Y TY
Size double

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