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-柱状图坐标上显示数据的主要内容,如果未能解决你的问题,请参考以下文章

echarts 柱状图 怎么排序

echarts柱状图坐标隔行显示问题

echarts怎么实现堆积柱状图,数据来源数据库

echarts怎么实现堆积柱状图,数据来源数据库

echarts 图例之间的间距怎么设置

echarts柱状图怎么修改柱体的颜色