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