Skip to main content
All docs
V24.1

DxProgressBar.Value Property

Specifies the progress bar value.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(0)]
[Parameter]
public double Value { get; set; }

Property Value

Type Default Description
Double 0

The value.

Remarks

The Value property specifies the current progress bar value. MinValue and MaxValue properties limit the range of accepted values.

The progress is measured in percentages and calculated by the following formula: (Value - MinValue) / (MaxValue - MinValue) * 100.

Progress Bar Overview

<DxProgressBar MinValue="100" MaxValue="500" Value="200" />

Circular progress bar

If the current progress is unknown, set the Indeterminate property to true.

See Also