我有饼图。我正在使用angular2-highcharts
图书馆
title : { text : 'simple chart' },
series: [{
data: [29.9, 71.5, 106.4, 129],
}],
chart: {
type: 'pie'
}
悬停时显示值。
但我希望它们显示在那件作品中。像这样
我怎样才能做到这一点?
我有饼图。我正在使用angular2-highcharts
图书馆
title : { text : 'simple chart' },
series: [{
data: [29.9, 71.5, 106.4, 129],
}],
chart: {
type: 'pie'
}
悬停时显示值。
但我希望它们显示在那件作品中。像这样
我怎样才能做到这一点?
添加plotOptions
高图
plotOptions: {
pie: {
dataLabels: {
enabled: true,
formatter: function() {
return this.y;
},
distance: -30,
color:'white'
}
}
},
plunker演示