Class IPointEventArgs
Inheritance
System.Object
IPointEventArgs
Implements
System.IEquatable<IPointEventArgs>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class IPointEventArgs : Object, IEquatable<IPointEventArgs>
Constructors
IPointEventArgs()
Declaration
public IPointEventArgs()
Properties
Cancel
Defines the event cancel status
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Chart
Defines the current chart instance
Declaration
public object Chart { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Name
Defines the name of the event
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PageX
Defines current window page x location
Declaration
public double PageX { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
PageY
Defines current window page y location
Declaration
public double PageY { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Point
Defines the current point
Declaration
public object Point { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
PointIndex
Defines the point index
Declaration
public double PointIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Series
Defines the current series
Declaration
public SeriesModel Series { get; set; }
Property Value
Type | Description |
---|---|
SeriesModel |
SeriesIndex
Defines the series index
Declaration
public double SeriesIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
X
Defines current mouse x location
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Y
Defines current mouse y location
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(IPointEventArgs)
Returns a boolean by comparing iPointEventArgs
Declaration
public bool Equals(IPointEventArgs iPointEventArgs)
Parameters
Type | Name | Description |
---|---|---|
IPointEventArgs | iPointEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>