Skip to main content
All docs
V24.1

DxProgressBar.Label Property

Specifies the progress bar label.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public string Label { get; set; }

Property Value

Type Description
String

The progress bar label.

Remarks

The progress bar label displays information about progress status and depends on Status and Value properties.

Progress bar labels

Use the Label property to customize the progress bar label.

<DxProgressBar Label="Loading..." Indeterminate="true" />

Indeterminate progress bar

You can use the LabelPosition property to specify the position of the label relative to the progress bar. To hide the label, set the ShowLabel property to false.

See Also