1. 程式人生 > >echarts-柱狀圖坐標上顯示數據

echarts-柱狀圖坐標上顯示數據

text echarts label ack 新增 eas cat har show

***

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