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
}

 

 

 

 

 

 

 

posted on 2022-09-28 15:39  好大的虫子  阅读(7542)  评论(0编辑  收藏  举报