Table of Contents

Class BOBChartTooltipContext<TX, TY>

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

State passed to a custom TooltipTemplate render fragment. Captures the active series, the active point (X / Y values) and the resolved color.

public sealed class BOBChartTooltipContext<TX, TY>

Type Parameters

TX

Type of the X-axis value.

TY

Type of the Y-axis value.

Inheritance
object
BOBChartTooltipContext<TX, TY>

Constructors

BOBChartTooltipContext()

public BOBChartTooltipContext()

Properties

Color

Color resolved for the series (palette or explicit override).

public string Color { get; init; }

Property Value

string

SeriesLabel

Label of the series the active point belongs to.

public string SeriesLabel { get; init; }

Property Value

string

X

The active point's X value.

public TX X { get; init; }

Property Value

TX

Y

The active point's Y value.

public TY Y { get; init; }

Property Value

TY