这应该很容易,我不知道为什么不是!
尝试为区域中间的每个系列添加单个标签。
因此,不是每个点上的数据标签,我只想在中间使用一个数据标签。
dataLabels: {
enabled: true,
align: 'center',
verticalAlign: 'bottom',
formatter: function() {return this.series.name; },
}
有人帮忙吗?我确信它可以手动添加为定位标签,但这似乎是一种解决方法。
谢谢!
答案 0 :(得分:5)
不仅对整个系列,您还可以为各个点启用标签,
plotOptions:{
arearspline:{
datalabels: {
enabled: false
}
}
}
系列数据:
data: [37707.0, 37031.0, {
y: 37037.0,
dataLabels: {
enabled: true,
formatter: function () {
return this.series.name;
}
}
},
37748.0,
39672.0,
41747.0],
在这里更新了你的小提琴:http://jsfiddle.net/CgAj2/1/
希望这会对你有所帮助