在饼图中显示文本

Display text inside pie chart

我有饼图。我正在使用 angular2-highcharts

title : { text : 'simple chart' },
        series: [{
            data: [29.9, 71.5, 106.4, 129],
        }],
        chart: {
            type: 'pie'
        }

悬停时显示值。

但我希望它们显示在那件作品中。像这样

我怎样才能做到这一点?

example is here

在 highcharts 添加 plotOptions

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

plunker 演示