如何在 highcharts 的行堆叠列上显示值
How to display values on line stacked columns on highcharts
我想在堆叠列中显示增长的值,但还没有成功,有人可以帮助我吗? ;(
我把它设置在数据标签上好像它仍然不起作用
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
formatter: function() {
return this.point.y;
},
style:{
fontSize: 8
}
}
},
line: {
dataLabels: {
enabled: true,
allowOverlap: true
}
}
}
您使用了spline
系列类型,因此您需要为spline
启用数据标签,而不是line
:
plotOptions: {
column: {
...
},
spline: {
dataLabels: {
enabled: true,
allowOverlap: true
}
}
}
现场演示: http://jsfiddle.net/BlackLabel/fputh18a/
API参考:https://api.highcharts.com/highcharts/plotOptions.spline.dataLabels
我想在堆叠列中显示增长的值,但还没有成功,有人可以帮助我吗? ;(
我把它设置在数据标签上好像它仍然不起作用
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
formatter: function() {
return this.point.y;
},
style:{
fontSize: 8
}
}
},
line: {
dataLabels: {
enabled: true,
allowOverlap: true
}
}
}
您使用了spline
系列类型,因此您需要为spline
启用数据标签,而不是line
:
plotOptions: {
column: {
...
},
spline: {
dataLabels: {
enabled: true,
allowOverlap: true
}
}
}
现场演示: http://jsfiddle.net/BlackLabel/fputh18a/
API参考:https://api.highcharts.com/highcharts/plotOptions.spline.dataLabels