所以我使用chart.js并且我的xAxis标题旋转我想将其设置为false或者我的xAxis标题不会旋转
答案 0 :(得分:0)
将此代码添加到options.scales:
xAxes: [{
ticks: {
maxRotation: 0 // angle in degrees
}
}]
选项示例:
options: {
responsive: false,
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}],
xAxes: [{
ticks: {
maxRotation: 0 // angle in degrees
}
}]
}
}