Chartjs-Chartjs multiple barcharts , the first data will offset over view

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

圖片

Leave a comment