Class GaugeBase
Class GaugeBase. Implements the RadzenComponent
Inherited Members
Namespace: Radzen.Blazor
Assembly: Radzen.Blazor.dll
Syntax
public abstract class GaugeBase : RadzenComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Constructors
GaugeBase()
Class GaugeBase. Implements the RadzenComponent
Declaration
protected GaugeBase()
See Also
Properties
ChildContent
Gets or sets the child content.
Declaration
[Parameter]
public RenderFragment ChildContent { get; set; }
Property Value
| Type | Description |
|---|---|
| RenderFragment | The child content. |
See Also
Height
Gets or sets the height.
Declaration
public double? Height { get; set; }
Property Value
| Type | Description |
|---|---|
| double? | The height. |
See Also
Width
Gets or sets the width.
Declaration
public double? Width { get; set; }
Property Value
| Type | Description |
|---|---|
| double? | The width. |
See Also
Methods
Dispose()
Disposes this instance.
Declaration
public override void Dispose()
Overrides
See Also
OnAfterRenderAsync(bool)
On after render as an asynchronous operation.
Declaration
protected override Task OnAfterRenderAsync(bool firstRender)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | firstRender | if set to |
Returns
| Type | Description |
|---|---|
| Task | A Task representing the asynchronous operation. |
Overrides
See Also
OnInitialized()
Called when [initialized].
Declaration
protected override void OnInitialized()
Overrides
See Also
Reload()
Reloads this instance.
Declaration
public void Reload()
See Also
Resize(double, double)
Resizes the specified width.
Declaration
[JSInvokable]
public void Resize(double width, double height)
Parameters
| Type | Name | Description |
|---|---|---|
| double | width | The width. |
| double | height | The height. |
See Also
SetParametersAsync(ParameterView)
Set parameters as an asynchronous operation.
Declaration
public override Task SetParametersAsync(ParameterView parameters)
Parameters
| Type | Name | Description |
|---|---|---|
| ParameterView | parameters | The parameters. |
Returns
| Type | Description |
|---|---|
| Task | A Task representing the asynchronous operation. |