zoukankan      html  css  js  c++  java
  • 关于echart横轴颜色 纵轴颜色 以及文本颜色的修改

    xAxis : [
    {
      type : 'category',
      boundaryGap : false,
      data : ['周一','周二','周三','周四','周五','周六','周日'],
      axisLine:{
        show:true,
        onZero:true,
        lineStyle:{
        color: 'red',
         2,
        type: 'solid'
        } 
      }/*横轴边框色*/
    }

    ],
    yAxis : [
    {
      type : 'value',
      axisLine:{
        show:true,
        onZero:true,
        lineStyle:{
        color: 'red',
         2,
        type: 'solid'
        }
      }/*纵轴边框色*/

    }
    ],

    /*文本颜色*/
      axisLabel : {
      show : true,
      textStyle : {
      color : 'red',
      align : 'left'
      }
    },

  • 相关阅读:
    表达式for loop
    用户输入
    字符编码
    变量字符编码
    Python安装
    Python 2 or 3?
    Python解释器
    2017中国大学生程序设计竞赛
    Educational Round 27
    Round #429 (Div.2)
  • 原文地址:https://www.cnblogs.com/jinglover/p/5735672.html
Copyright © 2011-2022 走看看