airbnb / rheostat

Rheostat is a www, mobile, and accessible slider component built with React
MIT License
1.69k stars 189 forks source link

Is it possible to change the granularity the slider can step through values. #207

Open juank11memphis opened 5 years ago

juank11memphis commented 5 years ago

Is it possible to change the granularity the slider can step through values. For example setting a range between 0 and 10 but changing the values each half unit (0, 0.5, 1, 1.5,...)?

Thanks.

ljharb commented 5 years ago

Sure - all of the values are numbers, not integers - you just have to do the percentage math yourself.

juank11memphis commented 5 years ago

Cool, thanks