States in .NET MAUI Circular ProgressBar (SfCircularProgressBar)

30 Jul 20261 minute to read

Configure the states of the circular progress bar control depending on the usage.

Determinate

This is the default state. Use it when the progress estimation is known.

Indeterminate

By enabling the IsIndeterminate property, the state of the circular progress bar can be changed to indeterminate when the progress cannot be estimated or is not being calculated. It can be combined with the determinate mode to indicate that the application estimates progress before the actual progress starts.

<progressBar:SfCircularProgressBar IsIndeterminate="true"/>
using Syncfusion.Maui.ProgressBar;

SfCircularProgressBar circularProgressBar = new SfCircularProgressBar { IsIndeterminate = true };
this.Content = circularProgressBar;

.NET MAUI Circular ProgressBar in indeterminate state

NOTE

Refer to our .NET MAUI Circular ProgressBar feature tour page for its groundbreaking feature representations. Also explore our .NET MAUI Circular ProgressBar example that shows how to configure a SfCircularProgressBar in .NET MAUI.