chart.js:segment true在饼图之外的标签中不起作用:chart.piecelabel.js

时间:2018-09-05 13:12:10

标签: charts chart.js segment

在这里,我已经使用chart.js和chart.piecelabel.js在饼图中添加了一个细分...但是未添加箭头。

       options: {
             pieceLabel: {
                    render: function (args) {
                    const label = args.label,
                    value = args.value;
                    return label + '\n' + value;
                    }
                }

1 个答案:

答案 0 :(得分:0)

似乎chart.piecelabel.js已更新其语法。他们的最新版本不再使用pieceLabel,而是使用plugin: labels:节。

 options: {
     plugins: {
       labels: {
         render: function (args) {
           const label = args.label,
                 value = args.value;
           return label + '\n' + value;
         }
       }
     }
   }

在这里拨弄:https://jsfiddle.net/d047bqzo/5/