堆叠图3echarts 柱状配置项内容和展示

配置项如下
      app.title = '坐标轴刻度与标签对齐';

option = {
    backgroundColor: '#000',
    width: '420',
    height: '160',
    color: ['#3398DB'],
    tooltip: {
        trigger: 'axis',
        axisPointer: { // 坐标轴指示器,坐标轴触发有效
            type: 'shadow' // 默认为直线,可选为:'line' | 'shadow'
        }
    },
    grid: {
        top: '1%',
        left: '0%',
        right: '0%',
        bottom: '0%',
        containLabel: true
    },
    xAxis: [{
        type: 'category',
        data: ['1', '2', '3', '4', '5', '6', '7','8', '9', '10', '11', '12', '13', '14'],
        axisTick: {
            show: false

        },

        axisLine: {
            show: false,
            lineStyle: {
                color: '#ccc'
            }
        }
    }],
    yAxis: {
        splitLine: {
            show: true,
            lineStyle: {
                color: ['#39506f'],

            }
        },
        axisTick: {
            show: false
        },
        axisLine: {
            show: false,
            lineStyle: {
                color: '#ccc'
            }
        }
    },
    series: [{
        name: '直接访问',
        type: 'bar',
        barWidth: '40%',
        stack: '总量',
        itemStyle: {
            normal: {
                barBorderRadius: 5,
                color: new echarts.graphic.LinearGradient(
                    0, 0, 0, 1, [{
                        offset: 0,
                        color: '#84f986'
                    }, {
                        offset: 1,
                        color: '#0fc0c6'
                    }]
                )
            }
        },
        data: [110, 152, 500, 734, 890, 630, 720,610, 452, 500, 734, 890, 630, 720]
    }, {
            name: '搜索引擎',
            type: 'bar',
            stack: '总量',
            itemStyle: {
            normal: {
                barBorderRadius: 5,
                color: new echarts.graphic.LinearGradient(
                    0, 0, 0, 1, [{
                        offset: 0,
                        color: '#fe996f'
                    }, {
                        offset: 1,
                        color: '#fe697f'
                    }]
                )
            }
        },
            data: [820, 832, 901, 934, 1290, 1330, 1320,820, 832, 901, 934, 1290, 1330, 1320]
        },
        {
            name: '搜索引擎',
            type: 'bar',
            stack: '总量',
            itemStyle: {
            normal: {
                barBorderRadius: 5,
                color: new echarts.graphic.LinearGradient(
                    0, 0, 0, 1, [{
                        offset: 0,
                        color: '#40d5eb'
                    }, {
                        offset: 1,
                        color: '#05a7fc'
                    }]
                )
            }
        },
            data: [820, 832, 901, 934, 1290, 1330, 1320,820, 832, 901, 934, 1290, 1330, 1320]
        }]
};
    
截图如下