1、改变坐标轴文字颜色:
在xAxis,yAxis中添加以下代码即可
xAxis: {
type: 'category',
data: this.xAxis,
axisLabel: {
show: true,
color: '#ffffff',
fontSize: 16
}
},
yAxis: {
type: 'value',
axisLabel: {
show: true,
color: '#ffffff',
fontSize: 16
}
},
2、改变图例等其他文字颜色:
在 title、legend、series等中添加以下代码即可
textStyle:
color: '#ffffff',
fontSize: 14
}