我使用带有选项的Chart js:
options: {
scales: {
xAxes: [{
ticks: {
autoSkip: false,
beginAtZero: true,
min: 0,
beginAtZero: true,
},
}],
yAxes: [{
ticks: {
beginAtZero: true,
min: 0,
beginAtZero: true,
},
}]
}
}
如何删除此填充?
我在文档中找不到此选项。
最佳答案
您可以使用minRotation
的maxRotation
或tick
更改标签的角度:
options: {
scales: {
xAxes: [{
ticks: {
minRotation: 90 // angle in degrees
}
}]
}
}