Skip to main content
All docs
V25.1
  • DxProgressBar.Indeterminate Property

    Specifies whether the progress bar displays a moving bar rather than a percentage.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(false)]
    [Parameter]
    public bool Indeterminate { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true to enable indeterminate mode; false to to enable determinate mode.

    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.

    Indeterminate Progress Bar

    <DxProgressBar Label="Loading..." Indeterminate="true" />
    

    Indeterminate progress bar

    See Also