Class BOBChartTooltipContext<TX, TY>
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
TXType of the X-axis value.
TYType of the Y-axis value.
- Inheritance
-
objectBOBChartTooltipContext<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