Class CircularGaugeEvents
Specifies the events to be triggered in the Circular gauge component.
Inheritance
Namespace: Syncfusion.Blazor.CircularGauge
Assembly: Syncfusion.Blazor.dll
Syntax
public class CircularGaugeEvents : ComponentBase
Constructors
CircularGaugeEvents()
Declaration
public CircularGaugeEvents()
Properties
AnimationCompleted
Gets or sets the event to trigger it after the animation gets completed for pointers.
Declaration
public EventCallback<AnimationCompleteEventArgs> AnimationCompleted { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<AnimationCompleteEventArgs> | An event callback function. |
AnnotationRendering
Gets or sets the event to trigger it before each annotation for the circular gauge 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 circular 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 that is triggered while dragging a pointer or a range.
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 that is triggered after a pointer or a range 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 that is triggered before a pointer or a range 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 on mouse down.
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 it while cursor leaves the circular gauge.
Declaration
public EventCallback<MouseEventArgs> OnGaugeMouseLeave { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<MouseEventArgs> | An event callback function. |
OnGaugeMouseMove
Gets or sets the event to trigger it on hovering the circular gauge.
Declaration
public EventCallback<MouseEventArgs> OnGaugeMouseMove { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<MouseEventArgs> | An event callback function. |
OnGaugeMouseUp
Gets or sets the event to trigger it on mouse up.
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 circular gauge gets loaded.
Declaration
public EventCallback<LoadedEventArgs> OnLoad { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<LoadedEventArgs> | 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. |
OnRadiusCalculate
Gets or sets the event to trigger it before the radius for the circular gauge gets calculated.
Declaration
public EventCallback<RadiusCalculateEventArgs> OnRadiusCalculate { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<RadiusCalculateEventArgs> | An event callback function. |
Parent
Gets or sets the properties of the Circular gauge.
Declaration
protected SfCircularGauge Parent { get; set; }
Property Value
Type |
---|
SfCircularGauge |
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 the tooltip for pointer of the circular gauge gets rendered.
Declaration
public EventCallback<TooltipRenderEventArgs> TooltipRendering { get; set; }
Property Value
Type | Description |
---|---|
Microsoft.AspNetCore.Components.EventCallback<TooltipRenderEventArgs> | 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. |