Class SparklineEvents
Specifies the events to be triggered in the sparkline component.
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class SparklineEvents : SfBaseComponent
Constructors
SparklineEvents()
Declaration
public SparklineEvents()
Properties
OnAxisRendering
Triggers before sparkline axis render.
Declaration
public EventCallback<AxisRenderingEventArgs> OnAxisRendering { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.EventCallback<AxisRenderingEventArgs> |
OnDataLabelRendering
Triggers before the sparkline datalabel render.
Declaration
public Action<DataLabelRenderingEventArgs> OnDataLabelRendering { get; set; }
Property Value
Type |
---|
System.Action<DataLabelRenderingEventArgs> |
OnLoaded
Triggers after the sparkline component is rendered.
Declaration
public Action<EventArgs> OnLoaded { get; set; }
Property Value
Type |
---|
System.Action<System.EventArgs> |
OnMarkerRendering
Triggers before the sparkline marker render.
Declaration
public Action<MarkerRenderingEventArgs> OnMarkerRendering { get; set; }
Property Value
Type |
---|
System.Action<MarkerRenderingEventArgs> |
OnPointRegionMouseClick
Triggers while mouse click on the sparkline point region.
Declaration
public EventCallback<PointRegionEventArgs> OnPointRegionMouseClick { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.EventCallback<PointRegionEventArgs> |
OnPointRendering
Triggers before sparkline points render.
Declaration
public Action<SparklinePointEventArgs> OnPointRendering { get; set; }
Property Value
Type |
---|
System.Action<SparklinePointEventArgs> |
OnResizing
Triggers on resizing the sparkline.
Declaration
public EventCallback<SparklineResizeEventArgs> OnResizing { get; set; }
Property Value
Type |
---|
Microsoft.AspNetCore.Components.EventCallback<SparklineResizeEventArgs> |
OnSeriesRendering
Triggers before sparkline series render.
Declaration
public Action<SeriesRenderingEventArgs> OnSeriesRendering { get; set; }
Property Value
Type |
---|
System.Action<SeriesRenderingEventArgs> |
Methods
OnInitializedAsync()
Method invoked when the component is ready to start.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | A System.Threading.Tasks.Task representing the asynchronous operation. |