Behavior Settings
24 Jul 20191 minute to read
Height
By default, Slider renders a height of 14px. You can change the Slider height by using the Height property. Specify the value for this property in a string format.
Width
By default, Slider control renders 100% width. You can customize the width of the Slider by using the Width property. Specify the value for this property in a string format.
The following steps explain you how to configure the height and width of the Slider.
In an ASPX page, define the Slider control and configure the Height and Width properties as required.
<ej:Slider ID="BasicSlider" runat="server" Height="20" Width="500"> </ej:Slider>
The following screenshot displays the output of the above code example.
IncrementStep
This property sets the incremental step value for the Slider. When the Slider handle slides through mouse or keyboard, it increments / decrements the value based on the step value. By default, when the Slider handle is moved, single value increments / decrements. By using the IncrementStep property, you can change the increment step value. Data type of this property is number.
The following steps explain you how to configure the IncrementStep property.
In an ASPX page, define the Slider control and configure the IncrementStep property as required.
<ej:Slider ID="BasicSlider" runat="server" Height="20" Width="500" IncrementStep="5"></ej:Slider>
The following screenshot displays the output of the above code example.
ReadOnly
This feature prevents you from interacting with the Slider. That is, you can only view the Slider value and cannot change it.
The following steps explain you how to enable the ReadOnly property.
In an ASPX page, define the Slider control and set the ReadOnly property to true.
<ej:Slider ID="BasicSlider" runat="server" Height="20" Width="500" ReadOnly="true"></ej:Slider>