ChartJS show value in legend (Chart.js V3.5)

Viewed 2816

I need the value of chart show after name of data for example ([colour of data] Car 50, [colour of data] Motorcycle 200). I've tried change the value of legend title but it doesn't work at all

Here is it my code

var ctx = document.getElementById('top-five').getContext('2d');
            var myChartpie = new Chart(ctx, {
                type: 'pie',
                data: {
                    labels: {!! $top->pluck('name') !!},
                    datasets: [{
                        label: 'Statistics',
                        data: {!! $top->pluck('m_count') !!},
                        backgroundColor: {!! $top->pluck('colour') !!},
                        borderColor: {!! $top->pluck('colour') !!},
                    }]
                },
                options: {
                    plugins:{
                        legend:{
                            display:true,
                            title:{
                                text: function(context) {//I've tried to override this but doesn't work
                                    var value = context.dataset.data[context.dataIndex];
                                    var label = context.label[context.dataIndex];
                                    return label+' '+value;
                                },
                            }
                        },
                    },
                    responsive: true,
                }
            });
2 Answers

You can use a custom generateLabels function for this:

var options = {
  type: 'doughnut',
  data: {
    labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
    datasets: [{
      label: '# of Votes',
      data: [12, 19, 3, 5, 2, 3],
      backgroundColor: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
    }]
  },
  options: {
    plugins: {
      legend: {
        labels: {
          generateLabels: (chart) => {
            const datasets = chart.data.datasets;
            return datasets[0].data.map((data, i) => ({
              text: `${chart.data.labels[i]} ${data}`,
              fillStyle: datasets[0].backgroundColor[i],
            }))
          }
        }
      }
    }
  }
}

var ctx = document.getElementById('chartJSContainer').getContext('2d');
new Chart(ctx, options);
<body>
  <canvas id="chartJSContainer" width="600" height="400"></canvas>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/3.5.1/chart.js"></script>
</body>

The below is a direct over ride of the default label generation found in the controller here. I have made one change on the text property within the generateLabels function in order to append the data value. It preserves the data toggling and strikethrough styling when a label is toggled.

    plugins: {
        legend: {
            labels: {
                generateLabels(chart) {
                    const data = chart.data;
                    if (data.labels.length && data.datasets.length) {
                        const {labels: {pointStyle}} = chart.legend.options;
    
                        return data.labels.map((label, i) => {
                            const meta = chart.getDatasetMeta(0);
                            const style = meta.controller.getStyle(i);
    
                            return {
                                text: `${label}: ${data['datasets'][0].data[i]}`,
                                fillStyle: style.backgroundColor,
                                strokeStyle: style.borderColor,
                                lineWidth: style.borderWidth,
                                pointStyle: pointStyle,
                                hidden: !chart.getDataVisibility(i),
    
                                // Extra data used for toggling the correct item
                                index: i
                            };
                        });
                    }
                    return [];
                }
            },
    
            onClick(e, legendItem, legend) {
                legend.chart.toggleDataVisibility(legendItem.index);
                legend.chart.update();
            }
        }
        //...
    }


  [1]: https://github.com/chartjs/Chart.js/blob/master/docs/samples/legend/html.md
Related