标签: charts highcharts
我需要创建一个饼图,其中的标签指示每个区域的含义,以及每个区域上覆盖的另一个信息。如果我同时使用数据标签和图例,它们将显示相同的文本。我如何同时使用不同的文本或模拟这种效果?
模仿我想要得到的东西:
答案 0 :(得分:3)
使用dataLabels的format或formatter配置属性,您可以让他们说出您想要的任何内容。
pie: { dataLabels: { enabled: true, formatter: function(){ return 'Y Value: ' + this.y; // y value } }, showInLegend: true }
快速example。