一篇关于echart 属性的内容

https://www.cnblogs.com/webtall/p/7238593.html     echarts各种字体颜色的修改

opiton = {

        legend: { 

                         y:'55%', //距离顶部的距离

                         textStyle:{  //文字样式

                              fontSize: 18,//字体大小

                              color: '#ffffff' //字体颜色 

                         },

                         data: [],

         },

        xAxis:{

                  type:'category',

                  data:[],

                  axisLabel:{

                         show:true,

                         textStyle:{ //X轴字体样式

                                color:'#fff',

                         }

                   }

         },

         yAixs:{

                type:'value',

                name:'',

               axisLabel:{ //Y轴字体样式

                      textStyle:{

                              color:'#fff',

                       }

               }

          }

}

原文地址:https://www.cnblogs.com/shine1234/p/13716600.html