Hello and thank you for the answer. I am using this code to set SfRangeSlider and working. Can you please tell me how can I get the selected range of values(start value to end value)? Thank you again
morning_weekdays_custom_collection = new List<Items>();
morning_weekdays_custom_collection.Add(new Items() { Label = "AM", Value = 5 });
morning_weekdays_custom_collection.Add(new Items() { Label = "PM", Value = 16 });
morning_weekdays = FindViewById(Resource.Id.slider_morming_weekdays) as SfRangeSlider;
morning_weekdays.ShowCustomLabel = true;
morning_weekdays.ShowValueLabel = true;
morning_weekdays.TickFrequency = 1;
morning_weekdays.Minimum = 5;
morning_weekdays.Maximum = 16;
morning_weekdays.CustomLabels = morning_weekdays_custom_collection;
morning_weekdays.TickPlacement = TickPlacement.Inline;
morning_weekdays.RangeEnd = 16;
morning_weekdays.RangeStart = 5;
morning_weekdays.ShowRange = true;
morning_weekdays.Orientation = Com.Syncfusion.Sfrangeslider.Orientation.Horizontal;