Chartjs-How to increase Chart.js yAxes' height to prevent overlapping

0👍

Have you tried using the barPercentage Configuration?

  options: {
     indexAxis: 'y',
        barPercentage :0.5
    }
 }

Leave a comment