Is there a y axis range slider in ploty?

I see that some one already asked this question, but the post was from 2016.

Hi!
There is an example given in the plotly js documentation here :

Try to set the layout>yaxis>rangeselector like this :
var layout = {
title: ‘Time series with range slider and selectors’,
xaxis: {
fixedrange: true
},
yaxis: {
rangeselector: selectorOptions,
rangeslider: {}
}
};