I was trying to create annotations for grouped bar charts - where each bar has a specific data label. An example is as follows: https://plot.ly/~ashish.baghudana/49.embed  However, as you see the data labels are not centered individually, but overall. I was wondering if there is a workaround to this, rather than annotating manually. Appreciate the help! The code itself is a simple modification of the examples in tutorial. ``` python import plotly.plotly as py import plotly.graph_objs as go x = ['Product A', 'Product B', 'Product C'] y1 = [20, 14, 23] y2 = [12, 18, 29] annotations1 = [dict( x=xi, y=yi, text=str(yi), xanchor='auto', yanchor='bottom', showarrow=False, ) for xi, yi in zip(x, y1)] annotations2 = [dict( x=xi, y=yi, text=str(yi), xanchor='auto', yanchor='bottom', showarrow=False, ) for xi, yi in zip(x, y2)] annotations = annotations1 + annotations2 trace1 = go.Bar( x=x, y=y1, name='SF Zoo' ) trace2 = go.Bar( x=x, y=y2, name='LA Zoo' ) data = [trace1, trace2] layout = go.Layout( barmode='group', annotations=annotations ) fig = go.Figure(data=data, layout=layout) plot_url = py.plot(fig, filename='stacked-bar') ```