This repository was archived by the owner on Aug 29, 2025. It is now read-only.

Description
Hello,
Vertical Sliders have stopped working (I think this happened in the most recent update, but am not certain)
However, vertical RangeSlider's still work in vertical mode.
Thanks,
Peter
import dash
import dash_core_components as dcc
import dash_html_components as html
app = dash.Dash(__name__)
app.layout = html.Div(children=[
html.H1(children='Vertical Slider has stopped working.'),
html.Div([
dcc.Slider(
id='mhd_window_slider',
min=0.05,
max=1.4,
step=0.005,
value=0.5,
vertical=True,
)
], style={ 'width':'50px', 'height':'500px' }),
html.H1(children='Vertical RangeSlider still works.'),
html.Div([
dcc.RangeSlider(
id='mhd_clim_slider',
count=1,
min=0,
max=3,
step=0.01,
value=[0.02, 1],
vertical=True,
)
], style={ 'width':'50px', 'height':'500px' }),
])
if __name__ == '__main__':
app.run_server(debug=True)