Orientation in Blazor Range Slider Component
21 Feb 20251 minute to read
The Slider can be displayed, either in horizontal or vertical orientation by using Orientation property. By default, the Slider renders in horizontal orientation.
@using Syncfusion.Blazor.Inputs
<SfSlider ID="default" Value="40" Orientation="SliderOrientation.Vertical"></SfSlider>
<style>
#default {
height: 300px;
}
</style>