我使用带有选项的Chart js:

  options: {
    scales: {
      xAxes: [{
        ticks: {
          autoSkip: false,
          beginAtZero: true,
          min: 0,
          beginAtZero: true,
        },
      }],
      yAxes: [{
        ticks: {
          beginAtZero: true,
          min: 0,
          beginAtZero: true,
        },
      }]
    }
  }


如何删除此填充?
我在文档中找不到此选项。

javascript - 如何删除填充图表js-LMLPHP

最佳答案

您可以使用minRotationmaxRotationtick更改标签的角度:

options: {
  scales: {
    xAxes: [{
      ticks: {
        minRotation: 90 // angle in degrees
      }
    }]
  }
}

09-26 22:30