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
When the slider moves, the axes don't adjust to the new data range, but if we download the plot with the current slider selection the view is correct.
plotly==5.24.1
import plotly.express as px import random df = px.data.gapminder() df['numeric_var'] = df['year'].apply(lambda x: x - 1900 + random.randint(-5,5)) fig = px.scatter( df, x="gdpPercap", y="numeric_var", animation_frame="year", animation_group="country", color="numeric_var", hover_name="country", ) fig.show()
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When the slider moves, the axes don't adjust to the new data range, but if we download the plot with the current slider selection the view is correct.
Screen.Recording.2024-10-11.at.19.10.47.mov
MRE
plotly==5.24.1
The text was updated successfully, but these errors were encountered: