有沒有辦法從圖表中刪除最初的垂直線而不刪除這些值? Chart.js刪除第一條垂直線
這裏是我的選擇什麼樣子:
scales: {
yAxes: [{
ticks: {
beginAtZero: true,
maxTicksLimit: 5,
suggestedMax: maxValue
}
}],
xAxes : [{
categoryPercentage: 1.0,
display : false, // set this to false to hide the labels under the bars
gridLines: {
display: false
}
}]
},
謝謝,我使用v2,我試過了,它沒有工作。 第一個解決方案是否僅適用於V1? –