How to set the range of slider? #1700
Unanswered
BrettKnoss
asked this question in
Questions about using Pluto
Replies: 1 comment
-
You most likely want to use directly Slider from PlutoUI.jl which also has a lot of other convenience bounds. Alternatively, if you want to stick to the custom html implementation without resorting to external packages you can do @bind asd html"<input type=range min=0 max=10>" You can check the details of range inputs here: https://www.w3schools.com/tags/att_input_type_range.asp |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
gives a range between 0 and 100, but what If I want a different range like between 1 and 10?
Beta Was this translation helpful? Give feedback.
All reactions