把左边的标题放到上面,左边不会空出来,echarts类型的柱状图
exhart社区里有 你参考一下https://www.makeapie.com/explore.html
你现在的效果图是什么样,发个截图看看
let options = {
grid:{
left:"3%",
right:"4%",
bottom:"3%",
containLabel:true
},
xAxis:{
show:false
},
yAxis:{
type:"category",
data:["高校","高校","高校","高校","高校","高校","高校","高校",],
axisLabel:{
textStyle:{
fontSize:16
}
},
axisTick:{
show: false
},
axisLine:{
show:false
},
splitLine:{
show:false
}
},
series:[
{
type:"bar",
barWidth:"60%",
data:[39,105,144,169,203,239,353,370,411],
itemStyle:{
normal:{
label:{
show:true,
position:'right',
textStyle: {
color:'#f6f6f6',
fontSize: 16
}
}
}
}
}
]
};