[Chartjs]-Automatic resize of chart โ€“ AngularChartJS

1๐Ÿ‘

do this:

options: {
    responsive: true,
    maintainAspectRatio: false
};

Then you can pragmatically update the height/width as you see fit with:

chart.canvas.parentNode.style.width = '128px';

//NOTE: Iโ€™m running 2.6

Leave a comment