[Chartjs]-Set my chart min yaxis to 0

1👍

got it. Its in the chartOptions….

  public barChartOptions:any = {
    scaleShowVerticalLines:false,
    responsive:true,
    scales: {
      yAxes: [{
        ticks: {
          beginAtZero: true
        }
      }]
    }
  };

Leave a comment