I would like to use the SfRangeSlider to set a single value - like the standard Xamarin.Forms.Slider control.
I've got the following XAML:
<range:SfRangeSlider
x:Name ="sfSliderOrientation"
Grid.Row ="0"
Grid.Column ="1"
HeightRequest ="90"
WidthRequest ="100"
Minimum ="0"
Maximum ="90"
Value ="{Binding Orientation}"
ShowRange ="false"
TickFrequency ="10"
SnapsTo ="Ticks"
Orientation ="Horizontal"
TickPlacement ="BottomRight" />
but the Orientation property on my ViewModel is not being updated when I move the slider.
What am I doing wrong?