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
I'm plotting offline.
Reproducible example:
import plotly.graph_objects as go fig = go.Figure(go.Bar( x = ['A', 'B', 'C', 'D', 'E'], y = [28.8, 28.5, 37, 56.8, 69.7] )) fig.update_layout( xaxis = dict( tickmode = 'array', tickvals = ['1', '3', '5'], ticktext = ['One', 'Three', 'Five'], tickson = 'boundaries' ) ) fig.full_figure_for_development()
Error:
ValueError: Transform failed with error code 525: Cannot read property '0' of undefined
Additional information:
ticktext
tickson
The text was updated successfully, but these errors were encountered:
I was not able to replicate this using plotly.js in this codepen.
Sorry, something went wrong.
I can confirm, that the issue went away since I reported it for plotly.py 4.14.1. I just tested it with plotly.py 5.2.1 and it works fine.
No branches or pull requests
I'm plotting offline.
Reproducible example:
Error:
ValueError: Transform failed with error code 525: Cannot read property '0' of undefined
Additional information:
ticktext
property or thetickson
property removes the error.The text was updated successfully, but these errors were encountered: