Add multiple thumbs (more than 2). This would enable multiple ranges.
Implement out-of-the-box support for ToolTip to display the value during a drag even when the RadSlider.IsDeferredDraggingEnabled property is set to True. Available in R1 2017 Release
When the slider is placed inside a ScrollViewer and the scrollviewer is resized fast a "Layout cycle exception is thrown". The original scenario where we reproduce the exception is the following: SelectionStart, SelectionEnd, Minimum and Maximum of the Slider are bound to DateTime.Ticks via converter. Exception is not reproduced if you move the Mininum declaration in xaml before the Maximum. And same for SelectionStart = before SelectionEnd. We are closing this item due to the workaround and the fact that it is NOT reproducible in WPF. If your scenario is different, please open a new support thread with more information regarding this exception.
Add PreviewSelectionStartChanged, PreviewValueChanged and PreviewSelectionEndChanged.
Ability to snap the slider only at particular ticks
Add the ability to align the RadSlider ticks when they are used in custom TickTemplate. The ticks are currenlly always top/left aligned depending on the slider orientation.
Mechanism to allow/force a refresh/rebind of the data template for the ticks needed
Implement Free/Lock/Push Thumbs interaction Modes like the ones in the Telerik RadSlider for Asp Ajax http://demos.telerik.com/aspnet-ajax/slider/examples/thumbsinteractionmode/defaultcs.aspx
Currently hiding certain ticks requires custom empty tick template or custom ticktemplate selector. When resizing such slider labels get overlapped because tick panel reserves space for the ticks - to preserve the proportions between tick values.
So user needs to use Canvas in the datatemplate of the tick.
The idea of this feature request is to somehow allow such feature out of the box with eventually additional property / behavior / built-in selector etc.
Implement separate templtes for Top/Left and Bottom/Right ticks.
Among with the minimum and the maximum, an allowed minimum and alllowed maximum are needed to limit the sliders` selection range
Add possibility to input value like in the sliders from MS Expresion Blend 's ColorPicker
This is reproducible when the deferred dragging is enabled and the slider is defined in a template (DataTemplate or ControlTemplate). The selection values are correct, but the UI of the selection is not properly updated. To work this around you can subscribe for the Loaded event of slider and reset its IsSelectionRangeEnabled property. private void RadSlider_Loaded(object sender, RoutedEventArgs e) { radSlider.IsSelectionRangeEnabled ^= true; radSlider.IsSelectionRangeEnabled ^= true; }
Notification when reaching a tick.
When the Slider ControlTemplate is edited in Blend, the ticks of the control are not displayed. Workaround: The ItemsSource and ItemTemplateSelector of the RadTickBar controls "BottomTickBar" and "TopTickBar" is not set in the extraction process. To workaround this, set these two properties of TickBars and the ticks will be displayed ", for instance: ItemsSource="{TemplateBinding ResultTicks}" and ItemTemplateSelector="{TemplateBinding TickTemplateSelector}". Reason for closed: This is an issue, that has been reported to Microsoft on several occasions (for example here: https://connect.microsoft.com/VisualStudio/feedback/details/677461/msdn-forum-the-value-of-itemscontrol-itemssource-is-missing-in-the-extracted-template ) and it is not scheduled to be fixed.
Currently, the containers for the ticks are generated and added in the visual tree even when the TickPlacement is set to None. Think of an improvement so that in this case the ticks are not added in the visual tree.
Wokraround: Set the Selection property in the constructor of the window using the SelectionRange<T> struct. public MainWindow() { InitializeComponent(); this.radSlider.Selection = new SelectionRange<double>(11,16); }