Hello there,
I had the below basic rangeslider:
html.Div([
dcc.RangeSlider(
id='GlobalRangeSlider',
min=0,
max=len(available_dates_rangeslider)-1,
marks={i : {'label' : available_dates_rangeslider[i], 'style':{'transform':'rotate(-90deg)'}} for i in range(0, len(available_dates_barchart)) if i %2==0},
dots=True,
value=[30, len(available_dates_barchart)-1],
allowCross=False,
)
], className="row", style={"height":"45px", "margin-left":"5px", "margin-right":"5px", "padding-bottom":"1em"}),
On my localhost, with Dash 0.43, I had:
On my VPS, with:
dash==1.1.1
dash-core-components==1.1.1
dash-daq==0.1.5
dash-html-components==1.0.0
dash-renderer==1.0.0
dash-table==4.1.0
I had
I’ve updated my localhost from 0.43 to 1.1.1 and now i also have this messy result on my localhost:
Is it a glitch ?