New to Telerik UI for Blazor? Download free 30-day trial

Indeterminate state

The Indeterminate state of the ChunkProgressBar 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 ChunkProgressBar is filled with flowing motion animation to showcase that the task is running.

Telerik ChunkProgressBar in Indeterminate state

chunkprogress bar in indeterminate state

To put the ChunkProgressBar in Indeterminate state set the Indeterminate, boolean parameter to true.

Put the ChunkProgressBar in Indeterminate State

<div>
    <TelerikButton ThemeColor="primary" OnClick="(_ => isIndeterminate = true)">Put the ChunkProgressBar in Indeterminate State</TelerikButton>
</div>

<br />

<TelerikChunkProgressBar Indeterminate="@isIndeterminate" Value="10" Max="100" ChunkCount="10"/>

@code {
    public bool isIndeterminate { get; set; } = false;
}

put the progress bar in indeterminate state example

See Also

In this article