echarts 坐标轴

option = {

    xAxis : {},     //  x轴设置

    yAxis : {},     // y轴设置

}

坐标轴分割线(即坐标轴分成小格子的效果):

xAxis: {

    splitLine: {

        lineStyle: {

            type: 'dashed'

        }

    }

}

坐标轴不是从零开始的

yAxis: {

scale: false

}

echarts 坐标轴_第1张图片
scale : false

yAxis: {

    scale: true,

     axisLabel: { textStyle: { color: '#ff0000 } } //坐标轴字体颜色

}


echarts 坐标轴_第2张图片
scale:true & 坐标轴字体颜色

datazoom 

dataZoom: [

    {

        type: 'slider',

        xAxisIndex: 0,

        filterMode: 'empty'

    }

],

echarts 坐标轴_第3张图片

你可能感兴趣的:(echarts 坐标轴)