Search code examples
reactjsnext.jschartsreact-chartjs-2

How can I change text color under Doughnut chart in react-chartjs-2


I am using the Doughnut from the react-chartjs-2 library and I would like to change the color only of the writings under the graph, I would like to put them in white since with this background they cannot be read very well (Look at the photo). Could anyone tell me how I can do it?

Screenshot of my chart

Thanks in advance, Fabio Tamburini


Solution

  • You can add few things into the options props of your Doughnut chart as bellow:

    const options = {
      plugins: {
        legend: {
          labels: {
            color: "#FFFFFF",
          },
        },
      },
    };
    

    For more details, please visit docs here