web-dev-qa-db-ja.com

Chart.js 2で軸のステップサイズを設定する方法

3つのY軸を持つchart.jsを使用して単純な折れ線グラフを作成しました: https://codepen.io/anon/pen/dZVgKw

ご覧のとおり、最後の数字は10から20までで、数字はありません。ここでステップサイズを設定するにはどうすればよいですか?

これは私が斧を追加する方法です:

{
  id: 'C',
  type: 'linear',
  position: 'left',
  ticks: {
    max: 10,
    min: 20,
  },
}

ありがとう。

8
Damien Monni

ここでステップサイズを設定するにはどうすればよいですか?

サンプル(線形スケール、ステップサイズ) から直接:

stepSize値を設定する。

scales: {
  xAxes: [{
    display: true,
    scaleLabel: {
      display: true,
      labelString: 'Month'
    }
  }],
  yAxes: [{
    display: true,
    scaleLabel: {
      display: true,
      labelString: 'Value'
    },
    ticks: {
      min: 0,
      max: 100,

      // forces step size to be 5 units
      stepSize: 5 // <----- This prop sets the stepSize
    }
  }]
}

これがライブの例です:

var ctx = document.getElementById('chartJSContainer').getContext('2d')

new Chart(ctx, {
  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,
          stepSize: 3
        },
      }]
    }
  }
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.3.0/Chart.js"></script>
<body>
    <canvas id="chartJSContainer" width="600" height="400"></canvas>
</body>
11
Nik Kyriakides