I'm new to plotly for python, and ran into a problem today: when I do scatter plots, hover display only works if the points have different x values. Please see the attached example.
I've tried formatting hoverinfo as "x+y", but it didn't make a difference. Is there a workaround for this, so I can display entries with different y values but same x value? Many thanks in advance for the help!
x=np.zeros(10)
y=np.arange(0,10,1)
trace1=go.Scatter(x=x, y=y)
data1=[trace1]
`enter code here`plotly.offline.iplot(data1)

