echarts 修改legend字体颜色、x轴或y轴文本字体颜色改变

目录

1.修改legend字体颜色:

2.修改x轴字体颜色:

3.修改y轴字体颜色


1.修改legend字体颜色:

 legend: {
           textStyle:{
                fontSize: 18,//字体大小
                color: '#ffffff'//字体颜色
           },
           data: []
}

2.修改x轴字体颜色:

xAxis : [
          {
                  type : 'category',
                  data : [],
                  axisLabel: {
                            show: true,
                            textStyle: {
                                color: '#ffffff'
                            }
                        }
                    }
                ]

3.修改y轴字体颜色

yAxis : [
            {
                   type : 'value',
                   name : '',
                   axisLabel : {
                            textStyle: {
                                color: '#ffffff'
                            }
                        }
               }
        ]

参考链接:https://blog.csdn.net/qq_25391785/article/details/81705627?biz_id=102&spm=1018.2118.3001.4449

你可能感兴趣的:(echarts)