Class AccumulationChartEvents
Gets and sets the events for the accumulation chart.
Inherited Members
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class AccumulationChartEvents : SfBaseComponent
Constructors
AccumulationChartEvents()
Declaration
public AccumulationChartEvents()
Properties
Loaded
Triggers when the chart render completed.
Declaration
public Action<AccumulationLoadedEventArgs> Loaded { get; set; }
Property Value
Type |
---|
System.Action<AccumulationLoadedEventArgs> |
OnDataLabelRender
Triggers before series getting renderred.
Declaration
public Action<AccumulationTextRenderEventArgs> OnDataLabelRender { get; set; }
Property Value
Type |
---|
System.Action<AccumulationTextRenderEventArgs> |
OnExportComplete
A callback that will be invoked when the accumulation chart is being exported.
Declaration
public Action<ExportEventArgs> OnExportComplete { get; set; }
Property Value
Type |
---|
System.Action<ExportEventArgs> |
Remarks
You can customize the exporting operation through the ExportEventArgs event argument.
OnLegendClick
Triggers when the legend item is clicked.
Declaration
public Action<AccumulationLegendClickEventArgs> OnLegendClick { get; set; }
Property Value
Type |
---|
System.Action<AccumulationLegendClickEventArgs> |
OnLegendItemRender
Triggers before legend getting rendered.
Declaration
public Action<AccumulationLegendRenderEventArgs> OnLegendItemRender { get; set; }
Property Value
Type |
---|
System.Action<AccumulationLegendRenderEventArgs> |
OnPointClick
Triggers when the point click.
Declaration
public Action<AccumulationPointEventArgs> OnPointClick { get; set; }
Property Value
Type |
---|
System.Action<AccumulationPointEventArgs> |
OnPointRender
Triggeres before the point rendering.
Declaration
public Action<AccumulationPointRenderEventArgs> OnPointRender { get; set; }
Property Value
Type |
---|
System.Action<AccumulationPointRenderEventArgs> |
OnPrintComplete
Triggers after the print completed.
Declaration
public Action OnPrintComplete { get; set; }
Property Value
Type |
---|
System.Action |
OnSelectionChanged
Triggers after the selection is completed.
Declaration
public Action<AccumulationSelectionCompleteEventArgs> OnSelectionChanged { get; set; }
Property Value
Type |
---|
System.Action<AccumulationSelectionCompleteEventArgs> |
SizeChanged
Triggers after resizing of chart.
Declaration
public Action<AccumulationResizeEventArgs> SizeChanged { get; set; }
Property Value
Type |
---|
System.Action<AccumulationResizeEventArgs> |
TooltipRender
Triggers before the tooltip for series is rendered.
Declaration
public Action<TooltipRenderEventArgs> TooltipRender { get; set; }
Property Value
Type |
---|
System.Action<TooltipRenderEventArgs> |
Methods
OnInitializedAsync()
Declaration
protected override Task OnInitializedAsync()
Returns
Type |
---|
System.Threading.Tasks.Task |