Echarts中如何在Bar-charts的每条柱体顶部添加自定义标签
How to add custom tag on the top of each bar of Bar-charts in Echarts
有什么方法可以实现在每个栏的顶部放置一个不是 yAxis 值的自定义标签?我查看了Echarts官网所有bar-charts个demo,没有一个demo满足我的需求
label
有formatter
选项:
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [
{
data: [120, 200, 150, 80, 70, 110, 130],
label: {
show: true,
position: 'top',
formatter: function(data){
return 'Bar #' + (data.dataIndex+1)
}
},
type: 'bar'
}
]
};
label
有formatter
选项:
option = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [
{
data: [120, 200, 150, 80, 70, 110, 130],
label: {
show: true,
position: 'top',
formatter: function(data){
return 'Bar #' + (data.dataIndex+1)
}
},
type: 'bar'
}
]
};