Chart.js 在饼图上显示标签

问题描述 投票:0回答:4

我最近将 Charts.js 库更新到最新版本(2.5.0)。 此版本在图表上不显示标签。

我有一个在 fiddler 上工作的例子:http://jsfiddle.net/g6fajwg8 .

但是,我完全按照示例定义了图表,但仍然看不到图表上的标签。

注意:Google 和 Stackoverflow 上有很多类似的问题,但大多数都是关于以前的版本,这些版本运行良好。

var config = {
    type: 'pie',
    data: {
        datasets: [{
            data: [
              1200,
              1112,
              533,
              202,
              105,
            ],
            backgroundColor: [
              "#F7464A",
              "#46BFBD",
              "#FDB45C",
              "#949FB1",
              "#4D5360",
            ],
            label: 'Dataset 1'
        }],
        labels: [
          "Red",
          "Green",
          "Yellow",
          "Grey",
          "Dark Grey"
        ]
    },
    options: {
        responsive: true,
        legend: {
            position: 'top',
        },
        title: {
            display: true,
            text: 'Chart.js Doughnut Chart'
        },
        animation: {
            animateScale: true,
            animateRotate: true
        }
    }
};

window.pPercentage = new Chart(ChartContext, config);

enter image description here

javascript jquery charts chart.js
4个回答
104
投票

好像没有这样的内置选项。

但是,此选项有一个特殊的库,它调用:“Chart PieceLabel”。

这是他们的演示

将他们的脚本添加到项目后,您可能需要添加另一个选项,称为:“pieceLabel”,并根据需要定义属性值:

pieceLabel: {
    // mode 'label', 'value' or 'percentage', default is 'percentage'
    mode: (!mode) ? 'value' : mode,

    // precision for percentage, default is 0
    precision: 0,

    // font size, default is defaultFontSize
    fontSize: 18,

    // font color, default is '#fff'
    fontColor: '#fff',

    // font style, default is defaultFontStyle
    fontStyle: 'bold',

    // font family, default is defaultFontFamily
    fontFamily: "'Helvetica Neue', 'Helvetica', 'Arial', sans-serif"
}

26
投票

使用数据标签插件 https://chartjs-plugin-datalabels.netlify.app/

HTML 集成

<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>

必须在Chart.js库之后加载!

你的代码将是这样的

options: {
        plugins: {
            // Change options for ALL labels of THIS CHART
            datalabels: {
                color: '#36A2EB'
            }
        }
},
data: {
   datasets: [{
            // Change options only for labels of THIS DATASET
            datalabels: {
                color: '#FFCE56'
            }
   }]
}

如果您想覆盖此设置,默认情况下您将看到数据集的值作为标签。例如通过标签

options: {
        plugins: {
            datalabels: {
                formatter: function(value, context) {
                    return context.chart.data.labels[context.dataIndex];
                }
            }
        }
}

3
投票

使用 chartjs-plugin-datalabels 并像这样设置选项

 options: {
                plugins: {
                    datalabels: {
                        formatter: function (value, context) {
                            return context.chart.data.labels[
                                context.dataIndex
                            ];
                        },
                    },
                },
            },

它将渲染标签文本


0
投票

可以使用 Chart.js 版本 4+ 的 DavideViolante 插件。 它是从 emn178/chartjs-plugin-labels 分叉出来的

Chart.js v4+ 的 Chart.js 插件标签

© www.soinside.com 2019 - 2024. All rights reserved.