[Chartjs]-Chart.js How to edit the title label color

2πŸ‘

βœ…

"AAPL" is not the chart title it’s the label of the legend.

To change that color, place the following inside your options block.

    options: {
      plugins: {
        legend: {
          labels: {
            color: 'red'
          }
        }
      },
   ...
   } 

https://www.chartjs.org/docs/latest/configuration/legend.html

Leave a comment