import plotly.express as px fig = px.bar( y=[6, 1, 110], x=['a', 'b', 'c'], text_auto=True, ) fig.show() fig.update_traces(textangle=0) fig.show()