echarts-柱状图坐标上显示数据
Posted ztriper
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了echarts-柱状图坐标上显示数据相关的知识,希望对你有一定的参考价值。
***
var option = {
title: {
text: ‘新增客户‘
},
tooltip: {
trigger: ‘item‘,
formatter: "{b} : {c}"
},
xAxis: {
type: ‘category‘,
data: data.Months
},
yAxis: {
type: ‘value‘,
},
series: [{
data: data.ThisMonthIncrease,
type: ‘bar‘,
stack:‘bar‘,
label:{
normal:{
show:true,
formatter:‘{c}‘
}
}
},
{
data: data.LastMonth,
type: ‘bar‘,
stack:‘bar‘,
label:{
normal:{
show:true,
formatter:‘{c}‘
}
}
}
]
};
***
以上是关于echarts-柱状图坐标上显示数据的主要内容,如果未能解决你的问题,请参考以下文章