圖例legend的設定。
1.字型和顔色的設定
textStyle:{
fontSize:15,
color:'#fff'
}
2.樣式的設定
legend: {
data:systemName,
itemWidth:40,
itemHeight:20,
textStyle:{
fontSize:15,
color:'#fff'
}
}
xAxis : [
{
type: 'category',
boundaryGap: false,
data: time,
splitLine:{show: false},//去除網格線
splitArea : {show : true},//保留網格區域
axisLine: {
lineStyle: {
type: 'solid',
color: '#fff',//左邊線的顔色
width:'2'//坐标線的寬度
}
},
axisLabel: {
textStyle: {
color: '#fff',//坐标值得具體的顔色
}
}
}
]