Shifting x ticks to be centered around bars

Hello, I have this bar chart, I’m using px.histogram. If you notice, the dates are a little shifted to the right. How can I shift them to lie in the center of the bars?

Any help would be very appreciated!

1 Like

The settings for adjusting the x-axis scale position can be handled as follows.

fig.update_xaxes(ticklabelposition='outside left')

The parameter types are as follows.

['outside','inside', 'outside top','inside top','outside left','inside left','outside right','inside right','outside bottom', 'inside bottom']

Try different parameters.

3 Likes