var option = {
// 标题
title: {
text: '',
subtext: ''
},
tooltip: {
trigger: 'axis',
backgroundColor: 'rgba(36, 49, 67, 0.9)',
},
//图例名
legend: {
data:['']
},
grid: {
left: '3%', //图表距边框的距离
right: '4%',
bottom: '3%',
containLabel: true
},
//工具框,可以选择
toolbox: {
feature: {
saveAsImage: {}
}
},
//x轴信息样式
xAxis: {
type: 'category',
boundaryGap: false,
data: [''],
//坐标轴颜色
axisLine:{
lineStyle:{
color:'red'
}
},
//x轴文字旋转
axisLabel:{
rotate:30,
interval:0
},
},
yAxis : [
{
type : 'value',
axisLabel : {
formatter: '{value} 人'
}
}
],
series: [
//虚线
{
name:'',
type:'line',
symbolSize:4, //拐点圆的大小
color:['red'], //折线条的颜色
data:[],
smooth:false, //关键点,为true是不支持虚线的,实线就用true
itemStyle:{
normal:{
lineStyle:{
2,
type:'dotted' //'dotted'虚线 'solid'实线
}
}
}
},
//实线
{
name:'',
type:'line',
symbol:'circle',
symbolSize:4,
itemStyle:{
normal:{
color:'red',
borderColor:'red' //拐点边框颜色
}
},
data:[]
}
]
};