echarts折線圖柱狀圖的座標軸的顏色及樣式的設置

基本用法請查看echarts官網。javascript

1、圖例legend的設置。java

1.字體和顏色的設置echarts

textStyle:{
                fontSize:15,
                color:'#fff'
            }

2.樣式的設置工具

 legend: {
            data:systemName,
            itemWidth:40,
            itemHeight:20,
            textStyle:{
                fontSize:15,
                color:'#fff'
            }
        }

  能夠根據需求本身設置。字體

 2、工具箱toolbox的設置blog

3、tooltip懸浮提示框ip

{
    type: 'line',
    lineStyle: {
        color: '#48b',
        width: 2,
        type: 'solid'
    },
   textStyle:{
      color:'#fff'
   }
}

3、x軸座標xAxis的字體顏色大小,座標線顏色,以及網格線的設置it

xAxis : [
            {
                type: 'category',
                boundaryGap: false,
                data: time,
                splitLine:{show: false},//去除網格線
                splitArea : {show : true},//保留網格區域
                axisLine: {
                    lineStyle: {
                        type: 'solid',
                        color: '#fff',//左邊線的顏色
                        width:'2'//座標線的寬度
                    }
                },
                axisLabel: {
                    textStyle: {
                        color: '#fff',//座標值得具體的顏色

                    }
                }
            }
        ]

4、yAsix的設置相同class

 yAxis : [
            {
                type : 'value',
                splitLine:{show: false},//去除網格線
                splitArea : {show : true},//保留網格區域
                axisLine: {
                    lineStyle: {
                        type: 'solid',
                        color:'#fff',
                        width:'2'
                    }
                },
                axisLabel: {
                    textStyle: {
                        color: '#fff'
                    }
                }
            }
        ]
相關文章
相關標籤/搜索