Making a bar plot and trying to get labels on the top of each bar using `series_annotations`: ``` using Plots gr() # pyplot() # plotly() data = 1:3 labels = string.(data) bar(data; series_annotations=labels, ylims=(0,5)) ``` This works well with the Plotly backend, the labels go at the middle of the top of each bar. With the GR and PyPlot backends the labels go in funny places Plotly:  PyPlot: <img width="679" alt="pyplot bar" src="https://cloud.githubusercontent.com/assets/854183/24825312/89d9a222-1c5f-11e7-8620-22c9f82976c8.png"> GR: <img width="679" alt="gr bar" src="https://cloud.githubusercontent.com/assets/854183/24825300/284a4b60-1c5f-11e7-9bc9-392e25c71176.png"> Anyway clearly this package rocks in that I can just try another backend with a one line change and it works or looks better or is faster etc. Cheers.