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.Type Property

Specifies the progress bar type: horizontal, vertical, or circular.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[DefaultValue(ProgressBarType.Horizontal)]
[Parameter]
public ProgressBarType Type { get; set; }

#Property Value

Type Default Description
ProgressBarType Horizontal

The progress bar type.

Available values:

Name Description Image
Horizontal

Displays the horizontal progress bar.

Horizontal progress bar

Vertical

Displays the vertical progress bar.

Vertical progress bar

Circular

Displays the circular progress bar.

Circular progress bar

#Remarks

Use the Type property to specify how the progress bar is displayed.

Progress Bar Types

razor
<DxProgressBar Type="ProgressBarType.Horizontal" Value="35" />
<DxProgressBar Type="ProgressBarType.Vertical" Value="35" />
<DxProgressBar Type="ProgressBarType.Circular" Value="35" />

Circular progress bar

See Also