0👍
我從其他地方發現了這個問題的解答,
而且我同時想出了兩個方法來解決這個問題。
如有人遇到相同的問題,可以參考這篇
uneven distribution of xaxis time scale with ‘autoSkip:true’ and maxTicksLimit #3277
方法一:
不使用 type= time
options: {
scales: {
xAxes: [{
// type: 'time',
time: {
unit: 'month'
},
distribution: 'series'
}],
...
方法二:
在時間軸的前後加上一組時間序列,值為 0
- Chartjs-How to control the over riding of Y-axis values in Chart.js when more entries inserted using PHP?
- Chartjs-Chart.js how do we extract clicked var?
Source:stackexchange.com