xAxis : [
{
type : 'category',
boundaryGap : false,
data : ['周一','周二','周三','周四','周五','周六','周日'],
axisLine:{
show:true,
onZero:true,
lineStyle:{
color: 'red',
width: 2,
type: 'solid'
}
}/*横轴边框色*/
}
],
yAxis : [
{
type : 'value',
axisLine:{
show:true,
onZero:true,
lineStyle:{
color: 'red',
width: 2,
type: 'solid'
}
}/*纵轴边框色*/
}
],
/*文本颜色*/
axisLabel : {
show : true,
textStyle : {
color : 'red',
align : 'left'
}
},