Class LinearGaugeEvents
Specifies the events to be triggered in the linear gauge component.
Inheritance
Namespace: Syncfusion.Blazor.LinearGauge
Assembly: Syncfusion.Blazor.dll
Syntax
public class LinearGaugeEvents : ComponentBase
Constructors
LinearGaugeEvents()
Declaration
public LinearGaugeEvents()
Properties
AnnotationRendering
Gets or sets the event to trigger it before each Annotation gets rendered.
Declaration
public EventCallback<AnnotationRenderEventArgs> AnnotationRendering { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<AnnotationRenderEventArgs> | An event callback function. |
AxisLabelRendering
Gets or sets the event to trigger it before each axis label gets rendered.
Declaration
public EventCallback<AxisLabelRenderEventArgs> AxisLabelRendering { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<AxisLabelRenderEventArgs> | An event callback function. |
Loaded
Gets or sets the event to trigger it after the linear gauge gets loaded.
Declaration
public EventCallback<LoadedEventArgs> Loaded { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<LoadedEventArgs> | an event callback function. |
OnDrag
Gets or sets the event function that is triggered when the pointer is on dragging interaction.
Declaration
public EventCallback<PointerDragEventArgs> OnDrag { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<PointerDragEventArgs> | An event callback function. |
OnDragEnd
Gets or sets the event to trigger it after the pointer is dragged.
Declaration
public EventCallback<PointerDragEventArgs> OnDragEnd { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<PointerDragEventArgs> | An event callback function. |
OnDragStart
Gets or sets the event to trigger it before the pointer is dragged.
Declaration
public EventCallback<PointerDragEventArgs> OnDragStart { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<PointerDragEventArgs> | An event callback function. |
OnGaugeMouseDown
Gets or sets the event to trigger it when performing the mouse down operation on gauge area.
Declaration
public EventCallback<MouseEventArgs> OnGaugeMouseDown { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<MouseEventArgs> | An event callback function. |
OnGaugeMouseLeave
Gets or sets the event to trigger its when performing the mouse leave operation from the gauge area.
Declaration
public EventCallback<MouseEventArgs> OnGaugeMouseLeave { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<MouseEventArgs> | An event callback function. |
OnGaugeMouseUp
Gets or sets the event to trigger it when performing mouse up operation on gauge area.
Declaration
public EventCallback<MouseEventArgs> OnGaugeMouseUp { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<MouseEventArgs> | An event callback function. |
OnLoad
Gets or sets the event to trigger it before the linear gauge gets loaded.
Declaration
public EventCallback<LoadEventArgs> OnLoad { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<LoadEventArgs> | An event callback function. |
OnPrint
Gets or sets the event to trigger it before the prints gets started.
Declaration
public EventCallback<PrintEventArgs> OnPrint { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<PrintEventArgs> | An event callback function. |
Parent
Gets or sets the cascading value and parameters for all of its descendants of the class.
Declaration
protected SfLinearGauge Parent { get; set; }
Property Value
Type |
---|
SfLinearGauge |
Resizing
Gets or sets the event to trigger it after window resize.
Declaration
public EventCallback<ResizeEventArgs> Resizing { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ResizeEventArgs> | An event callback function. |
TooltipRendering
Gets or sets the event to trigger it before tooltip gets rendered.
Declaration
public EventCallback<TooltipRenderEventArgs> TooltipRendering { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<TooltipRenderEventArgs> | An event callback function. |
ValueChange
Gets or sets the event to trigger it while changing the value of the pointer by UI interaction.
Declaration
public EventCallback<ValueChangeEventArgs> ValueChange { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<ValueChangeEventArgs> | An event callback function. |
Methods
OnInitializedAsync()
OnInitializedAsync method is called when the component has received its initial parameters.
Declaration
protected override Task OnInitializedAsync()
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task | System.Threading.Tasks.Task representing the asynchronous operation. |