Class ISparklinePointEventArgs<T>
Specifies the sparkline point related Event arguments.
Inheritance
System.Object
ISparklinePointEventArgs<T>
Implements
System.IEquatable<ISparklinePointEventArgs<T>>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ISparklinePointEventArgs<T> : Object, IEquatable<ISparklinePointEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
ISparklinePointEventArgs()
Declaration
public ISparklinePointEventArgs()
Properties
Border
Defines the current sparkline point border
Declaration
public SparklineBorderModel Border { get; set; }
Property Value
Type | Description |
---|---|
SparklineBorderModel |
Cancel
Defines the event cancel status
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Fill
Defines the current sparkline point fill color
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Name
Defines the name of the event
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PointIndex
Defines the current sparkline point index
Declaration
public double PointIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Sparkline
Defines the current sparkline instance
Declaration
public SparklineModel<T> Sparkline { get; set; }
Property Value
Type | Description |
---|---|
SparklineModel<T> |
Methods
Equals(ISparklinePointEventArgs<T>)
Returns a boolean by comparing with iSparklinePointEventArgs
Declaration
public bool Equals(ISparklinePointEventArgs<T> iSparklinePointEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ISparklinePointEventArgs<T> | iSparklinePointEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>