option = {
title: {
text: '',
},
tooltip: {
trigger: 'axis',
},
toolbox: {
show: true,
feature: {
}
},
xAxis: {
type: 'category',
boundaryGap: false,
data: ['1月','2月','3月','4月','5月','6月','7月','8月','9月','10月','11月','12月'],
axisTick:{
show:false
}
},
yAxis: {
type: 'value',
max:7000,
min:0,
interval:1000,
axisTick:{
show:false
},
axisLine:{ //坐标 轴线
show:false, //是否显示坐标轴轴线
}
},
series: [
{
type:'line',
areaStyle: {
color: '#ccc'
},
data:[1000,2000,3000,2450,2653,2314,3424,1234,5421,5621,6123,2231]
},
{
type:'bar',
barWidth:1,
itemStyle:{
normal:{
barBorderColor: 'tomato',
barBorderWidth:1.5,
barBorderRadius:0,
borderType:'dashed'
}
},
data:[1000,2000,3000,2450,2653,2314,3424,1234,5421,5621,6123,2231]
}
]
};
2019年11月04日 15点11分
3