You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Subplots get jumbled if there are more than 70 rows.
Looks like y axis is getting overlapped and only one subplot is being rendered.
Here is an example code:
from plotly.offline import plot
import plotly.graph_objs as go
from plotly import tools
X = list(range(50))
Y = list(range(50))
n_rows = 70 # make_subplots breaks down if rows > 70
fig = tools.make_subplots(rows=n_rows, cols=1)
fig['layout'].update(height=5000, width=1000)
for i in range(n_rows):
trace = go.Scatter(x = X, y = Y)
fig.append_trace(trace, i+1, 1)
plot(fig)