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-柱狀圖坐標上顯示數據