Class BOBChartHoverArgs<TX, TY>
Event args fired when the user hovers a data point. Charts emit this alongside (not instead of) their internal tooltip rendering, so callers can drive secondary UI (status bars, linked highlighting) off the same signal.
public sealed class BOBChartHoverArgs<TX, TY>
Type Parameters
TXType of the X-axis value of the hovered point.
TYType of the Y-axis value of the hovered point.
- Inheritance
-
objectBOBChartHoverArgs<TX, TY>
Constructors
BOBChartHoverArgs()
public BOBChartHoverArgs()
Properties
PointIndex
Index of the point within its series (0-based).
public int PointIndex { get; init; }
Property Value
- int
SeriesLabel
Label of the series the hovered point belongs to.
public string SeriesLabel { get; init; }
Property Value
- string
X
X value of the hovered point.
public TX X { get; init; }
Property Value
- TX
Y
Y value of the hovered point.
public TY Y { get; init; }
Property Value
- TY