DxProgressBar.Value Property
Specifies the progress bar value.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.2.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
.
<DxProgressBar MinValue="100" MaxValue="500" Value="200" />
If the current progress is unknown, set the Indeterminate property to true
.