[Chartjs]-Remove space between chart js legend and chart

0👍

You can explicitly define options.aspectRatio in order to change the width / height ratio of the chart.

options: {
  aspectRatio: 1.5,
  ...

for more information, please consult Configuration Options from the Chart.js documentation

Leave a comment