I am creating a figure with a number of subplots using plotly. One of the figures is an Ohlc/ candlestick that has a slider. In case of a single plot, the slider can be removed by
fig.update_layout(xaxis_rangeslider_visible=False)
.
However, this does not seem to work when the slider is in a subplot. Any idea how to remove the slider from the subplot ?
I have a feeling that this will involve:
fig.update_traces(meta=<VALUE>, selector=dict(type='ohlc'))
and specify the subplot row, column in update_traces, but not quite sure how to properly choose the value for meta.
I didn't have a good example, so I can turn off the slider function based on the example in this question. (This question is how to make the slider work for both graphs.) I changed the first graph to OHLC, and the second to volume. I don't have the source or the graphs, so does that meet your intent. the intent of the second question wasn't clear.