0

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

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

悬停时显示值。

在此处输入图像描述

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

在此处输入图像描述

我怎样才能做到这一点?

例子在这里

4

1 回答 1

2

添加plotOptions高图

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

plunker演示

于 2017-03-13T08:15:01.573 回答