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
Describe/explain the bug Tooltips within pie charts (others too maybe?) will always have an animation as the tooltip's wrapper is animated.
demo with default tooltip:
custom tooltip:
To Reproduce https://nivo.rocks/pie/canvas
Steps to reproduce the behavior:
Expected behavior Either animate={false} needs to be added to PieChart or tooltips need a way to opt out of having a wrapper.
animate={false}
PieChart
The text was updated successfully, but these errors were encountered:
for anyone looking for a workaround, if you dont use react-spring for anything else you can globally disable animations.
import { Globals } from 'react-spring'; Globals.assign({ skipAnimation: true, });
Sorry, something went wrong.
No branches or pull requests
Describe/explain the bug
Tooltips within pie charts (others too maybe?) will always have an animation as the tooltip's wrapper is animated.
demo with default tooltip:
custom tooltip:
To Reproduce
https://nivo.rocks/pie/canvas
Steps to reproduce the behavior:
Expected behavior
Either
animate={false}
needs to be added toPieChart
or tooltips need a way to opt out of having a wrapper.The text was updated successfully, but these errors were encountered: