- Plotly python version : 1.9.5
When a barchart has 1001+ string labels, the labels after the 1001th are not displayed on the axis.
Here is a capture of the top of the graph generated by the python script below.

importplotly.offlineimportplotly.graph_objsasgon=1005trace=go.Bar(
y=["Label {}".format(i+1) foriinrange(n)],
x=[1.0]*n,
orientation="h",
)
layout=go.Layout(
height=30*n,
width=600
)
plotly.offline.plot(
go.Figure(data=[trace], layout=layout),
)
When a barchart has 1001+ string labels, the labels after the 1001th are not displayed on the axis.
Here is a capture of the top of the graph generated by the python script below.