Chartjs-Add Extra label in a pie chart

0👍

Yes, you can do it as follows:

 options: {
  legend: {
  display: true,
    title: {
        display: true,
        text: 'Custom Chart Title',
        position: 'bottom'
    }
}

You can also find some more details on the official documentation, here:
Chart JS Legend Official Documentation

Leave a comment