-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
bugsomething brokensomething broken
Description
In my 2D scatter plot, the hover labels for closely spaced traces overlap when I think they should be stacked. It appears to be related to the level of zoom. Is the intended behavior for the labels to overlap when zoomed out?
A quick example is here:
https://plot.ly/~tfg250/141
In this plot, the initial view shows this:
Zooming in a bit and it changes to the expected view:
python code used to generate this plot:
traces=[]
for i in range(10):
x=[i,i+1]
y=[i,i+1]
traces.append(go.Scatter(x=x,y=y))
for i in range(10):
x=[i,i+1]
y=[i+1,i+2]
traces.append(go.Scatter(x=x,y=y))
layout = go.Layout(xaxis=dict(range=[0, 100]),yaxis=dict(range=[0, 100]))
fig = go.Figure(data=traces,layout=layout)
py.plot(fig, filename='test.html')
Metadata
Metadata
Assignees
Labels
bugsomething brokensomething broken