Enum SliderOrientation
Defines the orientation options for the Slider component.
Namespace: Syncfusion.Blazor.Inputs
Assembly: Syncfusion.Blazor.dll
Syntax
[JsonConverter(typeof(JsonStringEnumConverter))]
public enum SliderOrientation
Remarks
The SliderOrientation enum specifies how the slider is oriented on the page. This affects both the visual layout and interaction behavior of the slider component.
Examples
<SfSlider TValue="int" Value="30" Min="0" Max="100" Orientation="SliderOrientation.Horizontal">
</SfSlider>
Fields
| Name | Description |
|---|---|
| Horizontal | Renders the slider in horizontal orientation. |
| Vertical | Renders the slider in vertical orientation. |