Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxProgressBar.Label Property

Specifies the progress bar label.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[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.

razor
<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