请勿在xAxis上旋转缩放标题

Do not rotate scale title at xAxis

本文关键字:旋转 缩放 标题 xAxis      更新时间:2023-09-26

所以我使用的是chart.js,我的xAxis标题会旋转,我想将其设置为false,或者我的xAxis标题根本不会旋转。

将此代码添加到您的选项中。scales:

xAxes: [{
    ticks: {
        maxRotation: 0 // angle in degrees
    }
}]

选项示例:

options: {
    responsive: false,
    scales: {
        yAxes: [{
            ticks: {
                beginAtZero:true
            }
        }],
        xAxes: [{
            ticks: {
                maxRotation: 0 // angle in degrees
            }
        }]
    }
}