DxProgressBar.Indeterminate Property
Specifies whether the progress bar displays a moving bar rather than a percentage.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(false)]
[Parameter]
public bool Indeterminate { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Boolean | false |
|
Remarks
When progress cannot be estimated or it is not necessary to indicate the progress numerically, set the Indeterminate
property to true
to display a moving bar.
<DxProgressBar Label="Loading..." Indeterminate="true" />
See Also