[Chartjs]-Prevent size of canvas chart js to equal window height and width

1👍

Add ‘responsive: false’ to the chart options

options: {
        responsive: false,
        scales: {
            yAxes: [{
                ticks: {
                    beginAtZero:true
                }
            }]
        }
    }

Leave a comment