DxProgressBar.Type Property
Specifies the progress bar type: horizontal, vertical, or circular.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.2.dll
NuGet Package: DevExpress.Blazor
Declaration
[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. |
|
| Vertical | Displays the vertical progress bar. |
|
| Circular | Displays the circular progress bar. |
|
Remarks
Use the Type property to specify how the progress bar is displayed.
<DxProgressBar Type="ProgressBarType.Horizontal" Value="35" />
<DxProgressBar Type="ProgressBarType.Vertical" Value="35" />
<DxProgressBar Type="ProgressBarType.Circular" Value="35" />

See Also


