Class IMarkerRenderingEventArgs<T>
Specifies the sparkline marker rendering Event arguments.
Inheritance
System.Object
IMarkerRenderingEventArgs<T>
Implements
System.IEquatable<IMarkerRenderingEventArgs<T>>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class IMarkerRenderingEventArgs<T> : Object, IEquatable<IMarkerRenderingEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
IMarkerRenderingEventArgs()
Declaration
public IMarkerRenderingEventArgs()
Properties
Border
Defines the current sparkline marker 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 marker 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 label point index
Declaration
public double PointIndex { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Size
Defines the sparkline marker radius
Declaration
public double Size { 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> |
X
Defines the current sparkline marker location x
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Y
Defines the current sparkline marker location y
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(IMarkerRenderingEventArgs<T>)
Returns a boolean by comparing with iMarkerRenderingEventArgs
Declaration
public bool Equals(IMarkerRenderingEventArgs<T> iMarkerRenderingEventArgs)
Parameters
Type | Name | Description |
---|---|---|
IMarkerRenderingEventArgs<T> | iMarkerRenderingEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>