Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm trying to custom my datalabels using Chartjs, but I only can customize the returning value, and that makes sense since it's a canvas text. But anyone knows another solution to have customized datalabels (with html/css or fancy canvas options)?

I'm currently using formatter

 options: {
    plugins: {
      datalabels: {
        display: 'auto',
        align: 'end',
        anchor: 'end',
        clip: false,
        formatter: (value, config) => {           
          if(this.chartFormat === "percentage")
            return ((value * 100) / this.totalModels).toFixed(0) + '%' + ' | ' + config.chart.data.labels[config.dataIndex]

          return value;
        },
        color: '#000'
      },
    },

this is something like I trying to do

Thanks.

question from:https://stackoverflow.com/questions/66065220/custom-datalabels-in-chart-js

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
908 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...