Class StockChartEvents
To specify customization options for stockchart events.
Inheritance
System.Object
StockChartEvents
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class StockChartEvents : OwningComponentBase
Constructors
StockChartEvents()
Declaration
public StockChartEvents()
Properties
AxisLabelRendering
Triggers before each axis label is rendered.
Declaration
public Action<StockChartAxisLabelRenderEventArgs> AxisLabelRendering { get; set; }
Property Value
Type |
---|
System.Action<StockChartAxisLabelRenderEventArgs> |
ExportCompleted
A callback that will be invoked when the stock chart is being exported.
Declaration
public Action<ExportEventArgs> ExportCompleted { get; set; }
Property Value
Type |
---|
System.Action<ExportEventArgs> |
Remarks
You can customize the exporting operation through the ExportEventArgs event argument.
OnLoaded
Triggers after the stock chart rendering.
Declaration
public Action<StockChartEventArgs> OnLoaded { get; set; }
Property Value
Type |
---|
System.Action<StockChartEventArgs> |
OnPointClick
Triggers during point click.
Declaration
public Action<StockChartPointEventArgs> OnPointClick { get; set; }
Property Value
Type |
---|
System.Action<StockChartPointEventArgs> |
OnPrintComplete
Triggers when print operation is completed.
Declaration
public Action<PrintEventArgs> OnPrintComplete { get; set; }
Property Value
Type |
---|
System.Action<PrintEventArgs> |
OnZooming
Triggers after the zoom selection is done.
Declaration
public Action<StockChartZoomingEventArgs> OnZooming { get; set; }
Property Value
Type |
---|
System.Action<StockChartZoomingEventArgs> |
PeriodChanged
Triggers when the period is selected.
Declaration
public Action<StockChartPeriodChangedEventArgs> PeriodChanged { get; set; }
Property Value
Type |
---|
System.Action<StockChartPeriodChangedEventArgs> |
RangeChange
Triggers when the range is changed.
Declaration
public Action<StockChartRangeChangeEventArgs> RangeChange { get; set; }
Property Value
Type |
---|
System.Action<StockChartRangeChangeEventArgs> |
SharedTooltipRendering
Triggers before the shared tooltip for series is rendered.
Declaration
public Action<SharedTooltipRenderEventArgs> SharedTooltipRendering { get; set; }
Property Value
Type |
---|
System.Action<SharedTooltipRenderEventArgs> |
TooltipRendering
Triggers before the tooltip for series is rendered.
Declaration
public Action<TooltipRenderEventArgs> TooltipRendering { get; set; }
Property Value
Type |
---|
System.Action<TooltipRenderEventArgs> |
Methods
Dispose(Boolean)
Declaration
protected override void Dispose(bool disposing)
Parameters
Type | Name | Description |
---|---|---|
System.Boolean | disposing |
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. |