Articles in this section
Category / Section

How to change the intervals between ticks in WPF RadialSlider?

1 min read

The intervals of the Ticks along the track in SfRadialSlider can be changed by TickFrequency Property. The same has been demonstrated in the following code snippet:

XAML:

<Window x:Class="SfRadialMenuItem_New.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:navigation="clr-namespace:Syncfusion.Windows.Controls.Navigation;assembly=Syncfusion.SfRadialMenu.Wpf"
Title="MainWindow" Height="350" Width="525">
<Grid x:Name="Grid1">
<navigation:SfRadialSlider x:Name="_RadialSlider" Minimum="0" Maximum="50" TickFrequency="5" />
</Grid>
</Window>

 

C#:

namespace SfRadialMenuItem_New
{
/// <summary>
/// Interaction logic for MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
 
SfRadialSlider _RadialSlider = new SfRadialSlider();
_RadialSlider.Minimum = 0;
_RadialSlider.Maximum = 50;
_RadialSlider.TickFrequency = 5;
Grid1.Children.Add(_RadialSlider);
}
}
}

Output:

 

       


Conclusion

I hope you enjoyed learning about how to change the intervals between ticks in WPF RadialSlider.


You can refer to our WPF RadialSlider feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!


Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied