値を削除せずにグラフから最初の垂直線を削除する方法はありますか?ここ 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にのみ適用できますか? –