Double slider in plotly
I'm trying to implement two sliders in one fig of plotly I tried the following
# Create figure
fig = go.Figure()
# Add traces, one for each slider step
for step in np.arange(1, 5, 1):
fig.add_trace(
go.Scatter(
visible=False,
...