在饼图中显示文本

时间:2017-03-13 07:33:50

标签: angular highcharts angular2-highcharts

我有饼图。我使用width

angular2-highcharts

在悬停时,它会显示值。

enter image description here

但是我想让它们显示在那件作品中。像这样

enter image description here

我怎样才能做到这一点?

example is here

1 个答案:

答案 0 :(得分:2)

在highcharts中添加plotOptions

plotOptions: {
        pie: {
            dataLabels: {
                enabled: true,
                formatter: function() {
                    return this.y;
                },
                distance: -30,
                color:'white'
            }
        }
    },

plunker演示