We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A strange bug happens when adding more than 508 scattergl traces to a figure: the fill property is not shown anymore:
n=509 fig = go.Figure() for i in range(n): fig.add_scattergl( x=[0,1], y=np.random.random(2), mode='lines', showlegend=False ) fig.add_scattergl( x=[0.1, 0.9, 0.9, 0.1], y=[0.2, 0.2, 1.2, 1.2], mode='lines', fill='toself', fillcolor='red' ) fig.update_layout(hovermode='closest')
With n=509, the fill doesn't show (but the line of the trace does), with n=508, the fill shows up.
n=509
n=508
The text was updated successfully, but these errors were encountered:
No branches or pull requests
A strange bug happens when adding more than 508 scattergl traces to a figure: the fill property is not shown anymore:
With
n=509
, the fill doesn't show (but the line of the trace does), withn=508
, the fill shows up.The text was updated successfully, but these errors were encountered: