If the rangeslider is horizontally, it becomes like this:
So I tried to rotate it using the following code and style:
html.Div([
dcc.RangeSlider(df['total_second'].min(),
df['total_second'].max(),
20,
value=[df['total_second'].min(),
df['total_second'].max()],
marks=dict(zip(df['total_second'], df['time'])),
id='time_range')
],
style={'writing-mode': 'vertical-lr',
'text-orientation': 'sideways'
})
But this results in the following:
(Also the bottom part is cut out using the style)
I tried using this solution but to no avail.
Any suggestions are appreciated, thanks in advance