Chartjs-Chart.js – Line chart does not render all points when using Point[] format

0👍

Adding “scales” option fixed the problem:

    scales: {
      xAxes: [{
        type: 'linear',
        position: 'bottom',
      }]
    }

Leave a comment