2👍
From the docs:
If true, automatically calculates how many labels can be shown and hides labels accordingly.
Maximum number of ticks and gridlines to show.
The autoSkip
option controls whether some of the labels on the axes ticks are automatically skipped when the label texts would otherwise overlap. To control the number of ticks being displayed, what you’re looking for is maxTicksLimit
and related options. For your use case, you should probably set maxTicksLimit
depending on the size of your data sets.
Also, these options can’t be set on the datasets
directly. Instead, you need to pass them through Chartkick to Chart.js by using the library
option. So, something like this should achieve what you’re trying to do:
<%= line_chart [
{ name: "Successes", data: @successful_requests },
{ name: "Errors", data: @error_requests }
],
library: {
scales: {
xAxes: [{
ticks: {
maxTicksLimit: @successful_requests.size
}
}]
}
},
legend: "bottom",
messages: { empty: "Awaiting your first request!" }
%>
Note that I’m assuming both your data sets are always of the same length.
- [Chartjs]-Importing data from Model into a View gives me an error I cannot solve
- [Chartjs]-Extending Existing Chart Types angular chart js using chart js 2.0