Chartjs-BeginAtZero not working on mixed chart

0👍

beginAtZero is an attribute of ticks so you need to put it inside ticks, which is part of options:

options:{
    scales:{
         yAxes:[{
             ticks:{
                 beginAtZero: true
             }
         }]
    }
}

Leave a comment