How to limit bar width with time-series axis

Hi @vvv.

I can’t reproduce this:

import plotly.graph_objects as go

data = [0, 1, 2, None, 3, None, None, 8]
fig = go.Figure(data=go.Bar(y=data))
fig.show()

newplot (11)