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
Scales are measuring the longest text for all ticks including skipped ticks, this causes a decrease in performance. Changing
Chart.js/src/core/core.scale.js
Line 336 in 1ba06a2
var labels = tickOpts.autoSkip ? me._autoSkip(me.getTicks()) : me.getTicks();
Increases performance
The text was updated successfully, but these errors were encountered:
I created a PR #5765
Sorry, something went wrong.
This has been fixed in many ways already, for example the sampleSize option: https://www.chartjs.org/docs/master/axes/cartesian/category#common-tick-options-to-all-cartesian-axes
sampleSize
No branches or pull requests
Scales are measuring the longest text for all ticks including skipped ticks, this causes a decrease in performance. Changing
Chart.js/src/core/core.scale.js
Line 336 in 1ba06a2
to
Increases performance
The text was updated successfully, but these errors were encountered: