Class AccumulationPointEventArgs
Specifies the event arguments available on point render of the accumulation chart component.
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class AccumulationPointEventArgs : AccumulationRenderingEventArgs
Properties
IsRightClick
Defines the points is clicked by right click or not.
Declaration
public bool IsRightClick { get; }
Property Value
| Type | Description |
|---|---|
| bool |
|
PageX
Defines the x point of page.
Declaration
public double PageX { get; }
Property Value
| Type |
|---|
| double |
PageY
Defines the y point of page.
Declaration
public double PageY { get; }
Property Value
| Type |
|---|
| double |
Point
Defines the Series Point.
Declaration
public AccumulationPoints Point { get; }
Property Value
| Type |
|---|
| AccumulationPoints |
PointIndex
Defines the index of the point.
Declaration
public int PointIndex { get; }
Property Value
| Type |
|---|
| int |
SeriesIndex
Defines the series index of the point.
Declaration
public int SeriesIndex { get; }
Property Value
| Type |
|---|
| int |
X
Defines the x point.
Declaration
public double X { get; }
Property Value
| Type |
|---|
| double |
Y
Defines the y point.
Declaration
public double Y { get; }
Property Value
| Type |
|---|
| double |