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

  • 修改legend字体颜色,侧边栏字体:
 legend: {
                y:'55%',
                textStyle:{
                            fontSize: 18,//字体大小
                            color: '#ffffff'//字体颜色
                        },
                data: []
            }
  • 修改x轴字体颜色:
xAxis : [
          {
                  type : 'category',
                  data : [],
                  axisLabel: {
                            show: true,
                            textStyle: {
                                color: '#ffffff'
                            }
                        }
                    }
                ]
  • 修改y轴字体颜色:
yAxis : [
            {
                   type : 'value',
                   name : '',
                   axisLabel : {
                            textStyle: {
                                color: '#ffffff'
                            }
                        }
               }
posted @ 2022-05-10 09:14  盘思动  阅读(3591)  评论(0)    收藏  举报