Search.../

min

Sets or gets the minimum value of a range slider.

Description

Note that the min is the lower limit of the range slider, and not the minimum handle value.

Type:

numberRead & Write, default value is '0'

Was this helpful?

Get a range slider's minimum value

Copy Code
1let rangeSliderMin = $w('#myRangeSlider').min; // 0
Set a range slider's minimum value

Copy Code
1$w('#myRangeSlider').min = 0;