Class PointEventArgs
Specifies the event arguments available to click on point.
Inheritance
System.Object
Syncfusion.Blazor.Charts.BaseEventArgs
PointEventArgs
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class PointEventArgs : BaseEventArgs
Properties
IsRightClick
Defines the points is clicked by right click or not.
Declaration
public bool IsRightClick { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
PageX
Defines current window page x location.
Declaration
public double PageX { get; }
Property Value
Type | Description |
---|---|
System.Double |
PageY
Defines current window page y location.
Declaration
public double PageY { get; }
Property Value
Type | Description |
---|---|
System.Double |
Point
Defines the current point.
Declaration
public Point Point { get; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.Charts.Chart.Internal.Point |
PointIndex
Defines the point index.
Declaration
public double PointIndex { get; }
Property Value
Type | Description |
---|---|
System.Double |
Series
Defines the current series.
Declaration
public ChartSeries Series { get; }
Property Value
Type | Description |
---|---|
ChartSeries |
SeriesIndex
Defines the series index.
Declaration
public double SeriesIndex { get; }
Property Value
Type | Description |
---|---|
System.Double |
X
Defines current mouse x location.
Declaration
public double X { get; }
Property Value
Type | Description |
---|---|
System.Double |
Y
Defines current mouse y location.
Declaration
public double Y { get; }
Property Value
Type | Description |
---|---|
System.Double |