series: [
{
name: "",
type: "bar",
barGap: "-100%",//两条线可以重合在一起
barWidth: 25,
itemStyle: {
normal: {
label:{//在normal中放lable字段
show:true,
position: 'top',
color:"#c3cbde",
formatter:(params)=>{//核心部分 formatter 可以为字符串也可以是回调
return Math.round(params.value/10000) + '万'
},
},
}
},
z: -12,
data: newData.comData
},
]