ChartJS 2 如何全局删除 xAxis gridLines?

ChartJS 2 How to globally remove xAxis gridLines?

我正在使用 chartjs 2,我正在尝试禁用 xAxis 上的网格线并启用 yAxis 上的网格线并将它们设为虚线。

我通过将其添加到我的折线图配置中实现了此功能;

scales: {
    xAxes: [{
        display: true,
        gridLines: {
            display: false,
        }
    }],
    yAxes: [{
        display: true,
        gridLines: {
            display: true,
            borderDash: [2],
            borderDashOffset: [2],
            color: 'rgba(0, 0, 0, 0.04)',
            drawBorder: false,
            drawTicks: false,
        }
    }]
}

但是,当我这样做时,它会随机向我的图表添加另一个轴,其中包含完全虚假的值。我想删除此轴并保留原始轴,但也保留 gridLines 配置。

您可以为此设置默认值。您可以将其设置为 scale 默认值,以便它适用于所有图表类型和比例。如果您特别想仅隐藏 X 轴网格线,则需要在图表类型级别进行设置。

Chart.defaults.scale.gridLines.display = false // hides all the gridLines in all charts for all axes
Chart.defaults.line.scales.xAxes[0].gridLines = {
  display: false
} // Hides only the X axes gridLines in all line charts

var options = {
  type: 'line',
  data: {
    labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
    datasets: [{
        label: '# of Votes',
        data: [12, 19, 3, 5, 2, 3],
        borderWidth: 1
      },
      {
        label: '# of Points',
        data: [7, 11, 5, 8, 3, 7],
        borderWidth: 1
      }
    ]
  },
  options: {
    scales: {
      yAxes: [{
        ticks: {
          reverse: false
        }
      }]
    }
  }
}

var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
  <canvas id="chartJSContainer" width="600" height="400"></canvas>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.4/Chart.js"></script>
</body>