Using Slider

So the st.slider() can take can take a parameter called “Format” whatever value is passed here, gets placed on either side of the slider. (both ends have the same value)

How can place different values on either end of a slider eg: Volume High and Volume Low

the api of slider shows
streamlit. slider ( label , min_value=None , max_value=None , value=None , step=None , format=None , key=None )

so place your min_value = volumn low and max_value = volumn high

No that is not possible the Min & Max parameters take int and float values only. Not string.

how about this?

1 Like