Ticks in WPF Radial Slider (SfRadialSlider)
Ticks are placed along the round track in a uniform manner. The position of tick marks can be customized.
Tick Frequency
The TickFrequency property is used to define the number of ticks along the track, based on Minimum and Maximum values.
<syncfusion:SfRadialSlider Minimum="0" Maximum="100"
TickFrequency="5" />
Sweep direction
You can use the SweepDirection property in SfRadialSlider
for changing the direction of slider value arrangement. The SweepDirection
property contains the following values:
- Clockwise
- Counterclockwise
// For clockwise direction
this.radialSlider1.SweepDirection = SweepDirection.Clockwise;
// For anti-clockwise direction
this.radialSlider1.SweepDirection = SweepDirection.Counterclockwise;
Me.radialSlider1.SweepDirection = SweepDirection.Clockwise
Me.radialSlider1.SweepDirection = SweepDirection.Counterclockwise
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