Table of Contents

Class BOBChartHoverArgs<TX, TY>

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

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

TX

Type of the X-axis value of the hovered point.

TY

Type of the Y-axis value of the hovered point.

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