Table of Contents

Class GaugeBase

Namespace
Radzen.Blazor
Assembly
Radzen.Blazor.dll

Class GaugeBase. Implements the RadzenComponent

public abstract class GaugeBase : RadzenComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance
GaugeBase
Implements
Derived
Inherited Members

Constructors

GaugeBase()

protected GaugeBase()
See Also

Properties

ChildContent

Gets or sets the child content.

[Parameter]
public RenderFragment ChildContent { get; set; }

Property Value

RenderFragment

The child content.

See Also

Height

Gets or sets the height.

public double? Height { get; set; }

Property Value

double?

The height.

See Also

Width

Gets or sets the width.

public double? Width { get; set; }

Property Value

double?

The width.

See Also

Methods

Dispose()

Disposes this instance.

public override void Dispose()
See Also

OnAfterRenderAsync(bool)

On after render as an asynchronous operation.

protected override Task OnAfterRenderAsync(bool firstRender)

Parameters

firstRender bool

if set to true [first render].

Returns

Task

A Task representing the asynchronous operation.

See Also

OnInitialized()

Called when [initialized].

protected override void OnInitialized()
See Also

Reload()

Reloads this instance.

public void Reload()
See Also

Resize(double, double)

Resizes the specified width.

[JSInvokable]
public void Resize(double width, double height)

Parameters

width double

The width.

height double

The height.

See Also

SetParametersAsync(ParameterView)

Set parameters as an asynchronous operation.

public override Task SetParametersAsync(ParameterView parameters)

Parameters

parameters ParameterView

The parameters.

Returns

Task

A Task representing the asynchronous operation.

See Also

See Also