When a user sets the tickPlacement as BottomRight or TopLeft for a UI for ASP.NET MVC application no matter the orientation of the Kendo UI Slider, the tickPlacement is configured to use SliderOrientation.Both.
Using the following code, the Kendo UI Slider's tickPlacement will be set to both:
@(Html.Kendo().Slider()
.Name("slider")
.IncreaseButtonTitle("Increase")
.DecreaseButtonTitle("Decrease")
.Min(0)
.Max(20)
.SmallStep(1)
.Tooltip(true)
.Value(18)
.ShowButtons(true)
.TickPlacement(SliderTickPlacement.BottomRight)
.LargeStep(10)
)
Here is a screencast of the behavior in action.