Table of Contents

Class BOBChartClickArgs<TX, TY>

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

Event args fired when the user clicks a data point, bar, slice or other interactive primitive on a chart.

public sealed class BOBChartClickArgs<TX, TY>

Type Parameters

TX

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

TY

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

Inheritance
object
BOBChartClickArgs<TX, TY>

Constructors

BOBChartClickArgs()

public BOBChartClickArgs()

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 clicked point belongs to.

public string SeriesLabel { get; init; }

Property Value

string

X

X value of the clicked point.

public TX X { get; init; }

Property Value

TX

Y

Y value of the clicked point.

public TY Y { get; init; }

Property Value

TY