Class ISeriesRenderingEventArgs<T>
Specifies the sparkline series rendering Event arguments.
Inheritance
System.Object
ISeriesRenderingEventArgs<T>
Implements
System.IEquatable<ISeriesRenderingEventArgs<T>>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class ISeriesRenderingEventArgs<T> : Object, IEquatable<ISeriesRenderingEventArgs<T>>
Type Parameters
Name | Description |
---|---|
T |
Constructors
ISeriesRenderingEventArgs()
Declaration
public ISeriesRenderingEventArgs()
Properties
Border
Defines the current sparkline series 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 sparkline series fill color
Declaration
public string Fill { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LineWidth
Defines the sparkline series line width for applicable line and area.
Declaration
public double LineWidth { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Name
Defines the name of the event
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Sparkline
Defines the current sparkline instance
Declaration
public SparklineModel<T> Sparkline { get; set; }
Property Value
Type | Description |
---|---|
SparklineModel<T> |
Methods
Equals(ISeriesRenderingEventArgs<T>)
Returns a boolean by comparing with iSeriesRenderingEventArgs
Declaration
public bool Equals(ISeriesRenderingEventArgs<T> iSeriesRenderingEventArgs)
Parameters
Type | Name | Description |
---|---|---|
ISeriesRenderingEventArgs<T> | iSeriesRenderingEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>