Chartjs-Angular Chart.js Bar Chart

1👍

Within your component, try to define chartOptions as follows:

chartOptions = {
  responsive: true,
  scales: {
     yAxes: [{
        ticks: {
            beginAtZero: true,
            stepSize: 1
        }
    }]
  }
}

Leave a comment