Echarts X轴的字体大小,线颜色大小,标尺是否显示,Y轴也差不多
xAxis: [
{
type: 'category',
data: this.xD6,
axisPointer: {
type: 'shadow'
},
axisLabel: {//字体大小
textStyle: {
show: true,
fontSize: this.visible6 ? '12' : '10',
},
},
"axisTick": { //y轴刻度线
"show": true
},
axisLine: {//x轴线的颜色以及宽度
show: true,
lineStyle: {
color: "rgba(0, 0, 0, 0.45)",
type: "solid"
}
},
}
],