Chartjs-Chart.js how to change width of color

2👍

This can be done through the legend.labels.boxWidth option as follows:

options: {
  responsive: true,
  legend: {
    labels: {
      boxWidth: 15
    }
  }
  ...
}

boxWidth: Width of coloured box (default value is 40).

Leave a comment