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 the bug BarChart Tooltip animation lags behind on fast value changes. The data is provided with a simple provider
touchTooltipData: BarTouchTooltipData( tooltipBgColor: Colors.transparent, tooltipBottomMargin: -10, getTooltipItem: ( BarChartGroupData group, int groupIndex, BarChartRodData rod, int rodIndex, ) { String display; if (groupIndex == 0 && riskLabel != null) { display = riskLabel; } else { display = StringUtils.format(rod.y) + '%'; } return BarTooltipItem( display, const TextStyle( color: Colors.black, ), ); }, ),
Screenshots
Versions [✓] Flutter (Channel stable, 2.0.3, on Mac OS X 10.15.7 19H524 darwin-x64, locale de-DE) fl_chart: ^0.20.1
The text was updated successfully, but these errors were encountered:
Hmm, I think we should disable the tooltip's number animation. What do you think?
Sorry, something went wrong.
Yes, I'll try
You should do this inside the library.
No branches or pull requests
Describe the bug
BarChart Tooltip animation lags behind on fast value changes. The data is provided with a simple provider
Screenshots
chart_delay.mov
Versions
[✓] Flutter (Channel stable, 2.0.3, on Mac OS X 10.15.7 19H524 darwin-x64, locale de-DE)
fl_chart: ^0.20.1
The text was updated successfully, but these errors were encountered: