DxProgressBar.MinValue Property
Specifies the progress bar’s minimum value.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(0)]
[Parameter]
public double MinValue { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Double | 0 | The minimum bar value. |
Remarks
Use the MinValue
and MaxValue properties to specify values that correspond to the minimum (0%
) and maximum (100%
) progress bar 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" />
See Also