15621857753

echarts设置网格线颜色和隐藏网格线的方法

来源:齐鲁建站 栏目:Echarts 阅读: 日期:2020-09-23

echarts设置网格线颜色和隐藏网格线的方法

下面来说echarts设置网格线颜色和隐藏网格线的方法:

设置网格线颜色:

xAxis:  {

     type: 'value',

    //设置网格线颜色

    splitLine: {

        show: true,

        lineStyle:{

           color: ['#315070'],

           width: 1,

           type: 'solid'

      }

  }}

隐藏网格线:

xAxis:  {

      type: 'value',

    //隐藏网格线

      splitLine:{show: false}

}