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 | Accepts the double value. |
PageY
Defines current window page y location.
Declaration
public double PageY { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Point
Defines the current point.
Declaration
public Point Point { get; }
Property Value
Type | Description |
---|---|
Point | A point object that represents the current point. |
PointIndex
Defines the point index.
Declaration
public double PointIndex { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Series
Defines the current series.
Declaration
public ChartSeries Series { get; }
Property Value
Type |
---|
ChartSeries |
SeriesIndex
Defines the series index.
Declaration
public double SeriesIndex { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
X
Defines current mouse x location.
Declaration
public double X { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Y
Defines current mouse y location.
Declaration
public double Y { get; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |