Chartjs-How to change the position of PrimeNG(v14.2.2) Doughnut Label to left side in Angular(v14.2.12)

0👍

I was able to place the title on the left side of the doughnut chart by applying this configuration.

this.options = {
  responsive: true,
  plugins: {
    legend: {
      position: 'left',
    }
  }
}

Leave a comment