Plotly Express Bars from non-zero

Hi!
I’d like to use plotly express to make bar-charts but my bars don’t start at zero. I’m currently using graph-objects with the base parameter. Am I missing something with plotly.express.bar?
Thanks!

Hi @softwarrior you can create a figure with px.bar and then specify the base with fig.update_traces(base=[...]).

Thank you. I didn’t realize you could update traces this way.