Class BOBChartClickArgs<TX, TY>
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
TXType of the X-axis value of the clicked point.
TYType of the Y-axis value of the clicked point.
- Inheritance
-
objectBOBChartClickArgs<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