slider input widget

0
I’d like to use a slider to input hours worked during a day. step should be 0.5 hours (or 0.25 hours)  attribute decimal places seem to have little effect, at least locally.🤔
asked
1 answers
0

As the default stepsize property allows to set only integer values, the stepsize of 0.25 is not possible directly.

In your example you have the step size set to 1.

By using a decimal attribute for the step size and setting this to 0.25 and selecting this as the step size attribute you’ll get the step size as required:

answered