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
The following example crashes:
import plotly.express as px import numpy as np from pandas import DataFrame N = 10 df = DataFrame() df['x'] = np.random.random(N) df['y'] = np.random.random(N) df['label'] = ['a'] * N fig = px.scatter(df, x='x', y='y', text='label', render_mode='webgl') fig.write_image('test.png')
with the error:
ValueError: Transform failed with error code 525: POt.indexOf is not a function
This also happens by default for more than 1000 points if render_mode is not explicitly specified.
The text was updated successfully, but these errors were encountered:
Thanks @astrofrog - can you please let us know which version of plotly.py you are using? Thanks, Greg
Sorry, something went wrong.
No branches or pull requests
The following example crashes:
with the error:
This also happens by default for more than 1000 points if render_mode is not explicitly specified.
The text was updated successfully, but these errors were encountered: