DxProgressBar.Label Property
Specifies the progress bar label.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.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.

Use the Label property to customize the progress bar label.
<DxProgressBar Label="Loading..." Indeterminate="true" />

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