Configuring RadSlider's ticks
The RadSlider control offers a few new properties and some of them are demonstrated
in this online example.
- ItemType - Sets the type of the items, can be set to Item and Tick. When set to Tick, the slider can be additionaly configured by setting its LargeChange and SmallChange properties.
- LargeChange - This property was also known as ClickOffset(deprecated).
You can define what should be the change in the value of the slider when the user
clicks on the track by setting its value. By default the LargeChange
is set to 0. In this default mode the slider will automatically scroll to the value
which has been clicked by the user.
- SmallChange - This property was also known as SlideStep(deprecated).Using
the SmallChange property, you can create a "discrete" slider which will change its
value in the defined steps. For example if you have a slider with range from 0-100
and SlideStep set to 5, the values which the slider can display are 0, 5, 10, 15,
... 95, 100. By default the value of this property is set to 1.
- TrackPosition - This property is used to set the position of the
track. It can be set to TopLeft, BottomRight and
Center