我想在堆叠列中显示增长值,但还没有成功,有人能帮助我吗?(
我在数据标签上设置了它,好像它还是不工作
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
formatter: function() {
return this.point.y;
},
style:{
fontSize: 8
}
}
},
line: {
dataLabels: {
enabled: true,
allowOverlap: true
}
}
}
1条答案
按热度按时间zzwlnbp81#
您已经使用了
spline
系列类型,因此您需要启用spline
的数据标签,而不是line
:现场演示:http://jsfiddle.net/BlackLabel/fputh18a/
API引用:https://api.highcharts.com/highcharts/plotOptions.spline.dataLabels