New to Telerik UI for Blazor? Start a free 30-day trial
Indeterminate state
The Indeterminate state of the ProgressBar can be used in cases when the estimated time of completion of the task is unknown or the progress can not be represented as a physical value. The ProgressBar is filled with flowing motion animation to showcase that the task is running.
Telerik ProgressBar in Indeterminate state
To put the ProgressBar in Indeterminate state set the Indeterminate
, boolean
parameter to true
.
Put the ProgressBar in Indeterminate State
<div>
<TelerikButton ThemeColor="primary" OnClick="(_ => isIndeterminate = true)">Put the ProgressBar in Indeterminate State</TelerikButton>
</div>
<br />
<TelerikProgressBar Indeterminate="@isIndeterminate" Value="10" Max="100" />
@code {
public bool isIndeterminate { get; set; } = false;
}