States in WPF circular progressbar (SfCircularProgressBar)
4 Sep 2020 / 1 minute to read
States help to visualize the progress of a task in different modes. You can configure states of the circular progressbar control depending on its usage in following ways.
Determinate
Determinate is the default state. You can use it when the progress estimation is known. ShowProgressValue property allows to indicate the progress of the operation taken place in numerical value.
Indeterminate
By enabling the IsIndeterminate property, the state of the progressbar can be changed to indeterminate when the progress cannot be estimated or when not being calculated.
<Syncfusion:SfCircularProgressBar Progress="70" IsIndeterminate="True"/>
SfCircularProgressBar Circular = new SfCircularProgressBar { Progress = 70, IsIndeterminate=true};
grid.Children.Add(Circular);
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page