Class Chart3DPointClickEventArgs
Specifies the event arguments available to click on a 3D chart point.
Namespace: Syncfusion.Blazor.Chart3D
Assembly: Syncfusion.Blazor.dll
Syntax
public class Chart3DPointClickEventArgs : Chart3DEventArgs
Properties
IsRightClick
Gets the point is clicked by right click or not.
Declaration
public bool IsRightClick { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Remarks
This is a read-only property.
PageX
Gets the mouse cursor page x location of the SfChart3D.
Declaration
public double PageX { get; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the mouse cursor page x location. |
Remarks
This is a read-only property.
PageY
Gets the mouse cursor page y location of the SfChart3D.
Declaration
public double PageY { get; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the mouse cursor page y location. |
Remarks
This is a read-only property.
Point
Gets the point for the SfChart3D when the point is clicked.
Declaration
public Chart3DPoint Point { get; }
Property Value
Type | Description |
---|---|
Syncfusion.Blazor.Chart3D.Internal.Chart3DPoint | A Syncfusion.Blazor.Chart3D.Internal.Chart3DPoint object that represents the point. |
Remarks
This is a read-only property.
PointIndex
Gets the point index for the SfChart3D when the point is clicked.
Declaration
public double PointIndex { get; }
Property Value
Type | Description |
---|---|
System.Double | A integer value representing the point index. |
Remarks
This is a read-only property.
Series
Gets the series for the SfChart3D when the point is clicked.
Declaration
public Chart3DSeries Series { get; }
Property Value
Type | Description |
---|---|
Chart3DSeries | A Chart3DSeries object that represents the series. |
Remarks
This is a read-only property.
SeriesIndex
Gets the series index for the SfChart3D when the point is clicked.
Declaration
public double SeriesIndex { get; }
Property Value
Type | Description |
---|---|
System.Double | A integer value representing the series index. |
Remarks
This is a read-only property.
X
Gets the mouse x location for the SfChart3D.
Declaration
public double X { get; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the mouse x location. |
Remarks
This is a read-only property.
Y
Gets the mouse y location for the SfChart3D.
Declaration
public double Y { get; }
Property Value
Type | Description |
---|---|
System.Double | A double value representing the mouse y location. |
Remarks
This is a read-only property.