Setting Range of Axes Manually

Is it quite possible to set the lower boundary of the axes and leave out the upper boundary of the axes to be automatic in plotly?

I have tried some combination like;

fig_pressures.update_yaxes(range=[0])

fig_pressures.update_yaxes(range=[0,])

None seem to be working.

If you want the lower bound to be specifically 0, you could try rangemode=β€œnonnegative” instead.

1 Like

Thank you so much.

It worked