其他分享
首页 > 其他分享> > echarts 修改legend字体颜色、x轴或y轴文本字体颜色改变

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

作者:互联网

 legend: {
                y:'55%',
                textStyle:{
                            fontSize: 18,//字体大小
                            color: '#ffffff'//字体颜色
                        },
                data: []
            }
xAxis : [
          {
                  type : 'category',
                  data : [],
                  axisLabel: {
                            show: true,
                            textStyle: {
                                color: '#ffffff'
                            }
                        }
                    }
                ]
yAxis : [
            {
                   type : 'value',
                   name : '',
                   axisLabel : {
                            textStyle: {
                                color: '#ffffff'
                            }
                        }
               }

标签:textStyle,颜色,color,字体,ffffff,legend
来源: https://www.cnblogs.com/pansidong/p/16252150.html