This question is locked. New answers and comments are not allowed.
We have a RadSlider defined as follows:
Move to Point works perfectly with the mouse when expanding the slider range in the decrease direction. However, if you click inside the range itself, neither handle moves. This makes sense, since the control has no way of knowing which handle you want to move. However, I want to lock the increase handle (per my other thread) and allow the user to click inside the range to move the decrease handle to a high value.
For example, the slider starts at -30 to 0.
I click on/near the -90 tick and the range is now -90 to 0, which is good.
I click on/near the -30 tick, and the range does not move. The desired behavior is for the range to become smaller at -30 to 0.
Is this possible?
<
telerik:RadSlider
x:Name
=
"sldTimeSelection"
Grid.Row
=
"1"
Grid.Column
=
"0"
Orientation
=
"Horizontal"
Minimum
=
"-365"
Maximum
=
"0"
IsMoveToPointEnabled
=
"True"
IsSelectionRangeEnabled
=
"True"
MinimumRangeSpan
=
"7"
MaximumRangeSpan
=
"365"
SelectionStart
=
"-30"
SelectionEnd
=
"0"
IsSnapToTickEnabled
=
"True"
TickPlacement
=
"BottomRight"
Ticks
=
"-7, -30, -90, -180, -365"
EnableSideTicks
=
"False"
Margin
=
"5,0"
>
</
telerik:RadSlider
>
Move to Point works perfectly with the mouse when expanding the slider range in the decrease direction. However, if you click inside the range itself, neither handle moves. This makes sense, since the control has no way of knowing which handle you want to move. However, I want to lock the increase handle (per my other thread) and allow the user to click inside the range to move the decrease handle to a high value.
For example, the slider starts at -30 to 0.
I click on/near the -90 tick and the range is now -90 to 0, which is good.
I click on/near the -30 tick, and the range does not move. The desired behavior is for the range to become smaller at -30 to 0.
Is this possible?