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
For 0.95 and prior I'd do this:
const divider = Math.floor(processedChartData.labels.length / 5); . . . axisX: { labelInterpolationFnc: function skipLabels(value, index) { return index % divider === 0 ? value : null; }, },
This would allow me to skip xAxis labels so they wouldn't be insanely over crowded.
Now, this will put the string "null" for every place that in the past, was skipped:
The text was updated successfully, but these errors were encountered:
Okay, this is a bug that was introduced with b7c16dd . I'll do a quick fix and publish 0.9.7
Sorry, something went wrong.
3f8e629
No branches or pull requests
For 0.95 and prior I'd do this:
This would allow me to skip xAxis labels so they wouldn't be insanely over crowded.
Now, this will put the string "null" for every place that in the past, was skipped:
The text was updated successfully, but these errors were encountered: