没事,多看看官网:
option={
title:{
text:'……'
},
tooltip:{
trigger:'axis', //lable显示所有数据
textStyle:{
fontSize: '16', //字体大小
fontWeight: 'bolder' //字体加粗
}
},
legend:{
data:['a','b'],
textStyle:{
fontSize: '16', //字体大小
fontWeight: 'bolder' //字体加粗
}
},
xAxis:{
data:['1','2','3','4','5','6'],
axisLabel:{
interval:0,
textStyle:{
fontSize: '16', //字体大小
fontWeight: 'bolder' //字体加粗
}
}
},
yAxis:{
},
series:[{
name:'a',
type:'bar',
data:[5,1,6,3,1,2]
},{
name:'b',
type:'bar',
data:[5,1,6,3,1,2]
}
]
}