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
Steps to reproduce:
import plotly.graph_objects as go fig = go.Figure() fig.update_yaxes(scaleanchor='x') fig.add_traces([{'type': 'scatter', 'mode': 'lines', 'x': [0, 1], 'y': [0, -1], 'zorder': 0}, {'type': 'scatter', 'mode': 'markers', 'x': [0, 1], 'y': [0, -1], 'zorder': 1}]) fig.add_layout_image(dict( source="https://images.plot.ly/language-icons/api-home/python-logo.png", xref="x", yref="y", x=0, y=0, sizex=1, sizey=1, layer='below')) fig.show()
Expected result; This doesn't happen when zorder is equal:
... fig.add_traces([{'type': 'scatter', 'mode': 'lines', 'x': [0, 1], 'y': [0, -1], 'zorder': 1}, {'type': 'scatter', 'mode': 'markers', 'x': [0, 1], 'y': [0, -1], 'zorder': 1}]) ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Steps to reproduce:
Expected result; This doesn't happen when zorder is equal:
The text was updated successfully, but these errors were encountered: