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

Radiuses

RadCircularProgressBar allows you to change the radius of the track, the primary and the secondary progress indicator. To change the track's radius, set the TrackStartRadius and TrackEndRadius properties. To modify the radius of the progress indicators, set the IndicatorStartRadius and IndicatorEndRadius properties.

If you set the IndicatorStartRadius and IndicatorEndRadius properties, their values will modify the radius of both the primary and secondary progress indicator.

Changing the track and progress indicators radiuses

<telerik:RadCircularProgressBar Name="circularProgressBar"  
                                Value="0.5" 
                                SecondaryValue="0.75" 
                                UseRoundedSegments="True" 
                                IndicatorStartRadius="0.75" 
                                IndicatorEndRadius="1" 
                                TrackStartRadius="0.85" 
                                TrackEndRadius="0.9"/> 

Changing the track and progress indicators radiuses in code

RadCircularProgressBar radCircularProgressBar = new RadCircularProgressBar(); 
radCircularProgressBar.Value = 0.5; 
radCircularProgressBar.SecondaryValue = 0.75; 
 
radCircularProgressBar.UseRoundedSegments = true; 
 
radCircularProgressBar.IndicatorStartRadius = 0.75; 
radCircularProgressBar.IndicatorEndRadius = 1; 
 
radCircularProgressBar.TrackStartRadius = 0.85; 
radCircularProgressBar.TrackEndRadius = 0.9; 

RadCircularProgressBar with modified radiuses

In this article