柱图-重叠echarts 柱状配置项内容和展示

三组数据 两组重叠

配置项如下
      option = {
    backgroundColor: '#2a2c30',
    legend: {
        data: ['计划', '实际', '预测']
    },
    grid: {
        left: '3%',
        right: '4%',
        bottom: '10%',
        containLabel: true
    },
    toolbox: {
      show: true,
      top: -5,
      right: 15,
      feature: {
        saveAsImage: {},
      },
    },

    yAxis: {
        type: 'value',
    },
    xAxis: [{
            type: 'category',
            data: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'],
            axisLine: {
              show: true,
              lineStyle: {
                color: '#6d7483',
              },
            },
            axisLabel: {
              color(value) {
                return value === '05' ? '#67C23A' : '#6d7483'; // 设置x轴服务器当前时间
              },
            },
        }, {
            type: 'category',
            data: ['01', '02', '03', '04', '05', '06', '07', '08', '09', '10', '11', '12'],
            show: false,
        },

    ],
    dataZoom: [
      {
        type: 'inside',
        show: true,
        start: 0,
        end: 50,
        // bottom: 20,
        // borderColor: '#2a2c30 ',
        xAxisIndex: 0,
      }, {
        type: 'inside',  
        show: true,
        start: 0,
        end: 50,
        // bottom: 0,
        // borderColor: '#2a2c30 ',
        xAxisIndex: 1,
      },
   ],
    series: [
        {
            type: 'bar',
            barGap: 0,
            xAxisIndex: 1,
            barWidth: 15,
            // data: ['', '', '']
        },
        {
            name: '计划',
            type: 'bar',
            barWidth: 15,
            data: [8, 15, 10, 20, 42, 24, 57, 24, 7, 6, 4, 38],
            label: {
                normal: {
                    show: true,
                    position: 'top',
                },
            },
            itemStyle: {
              normal: {
                barBorderRadius: 30,
                color: '#1ca8ae', // 柱子颜色
              },
            },
        },
        {
            name: '实际',
            type: 'bar',
            xAxisIndex: 1,
            barGap: '0',
            barWidth: 15,
            data: [5, 51, 51, 20, 42, 24, 57, 24, 7, 6, 48, 96],
            label: {
                normal: {
                    show: true,
                    position: 'top',
                },
            },
            itemStyle: {
              normal: {
                barBorderRadius: 30,
                color: '#0279ff', // 柱子颜色
              },
            },
        },
         {
            name: '预测',
            type: 'bar',
            barGap: 0,
            barWidth: 15,
            data: [10, 10, 30, 51, 51, 51, 20, 42, 24, 57, 24, 45],
            label: {
                normal: {
                    show: true,
                    position: 'top',
                },
            },
            itemStyle: {
              normal: {
                barBorderRadius: 30,
                color: 'rgba(103,92,230, 0.5)', // 柱子颜色
              },
            },
        }

    ]
};
    
截图如下