Below you see i have a chart, where the x-axis slider is shown, and below it i have two sub-panels.
Unfortunately, i havent been able to figure out how to get the slider to show below these two panels as yet (separate thread on this issue: Positioning slider under multiple subplots - #2 by empet)
So for now i am just hiding the slider using the following:
fig.update_layout(xaxis_rangeslider_visible=False, xaxis_type=โdateโ)
fig.update_yaxes(autorange = True, fixedrange= False)
Unfortunately, when i do this, the scale of the right y-axis changes drastically, causing the plot to effectively be displayed as a line. Above the y-axis range is from 0 to 0.48. Below itโs from -10M to 10M!
Does anyone know how to resolve this issue?