Chartjs-Chartjs Bar Chart add background color to value labels

0👍

you can user plugin option of chart js as per below code.

plugins: {
      
      datalabels: {
        color: "#000",
        backgroundColor: "#f0f0f0",
        font: {
          weight: "bold",
          size: 12
        },
        formatter: Math.round,
        anchor: "end",
        offset: -20,
        align: "start"
      },
    }
}

https://www.npmjs.com/package/chartjs-plugin-datalabels => You can use this plugin

https://www.npmjs.com/package/chartjs-plugin-labels => This is very old plugin

Leave a comment