x轴type=time且为堆叠条形图的问题echarts 柱状配置项内容和展示

如图,两个图例应该有两个颜色的数据,但只能看到一个,神奇的是当你把鼠标放到图例1上时图例1的数据就显示出来了,大神们帮我看下怎么解决,谢谢了!

配置项如下
      
option = {
    color:['#61a0a8','#d48265'],
                title: {
                    text: '进度图',
                    textStyle:{
                        color:'#aaa',
                        fontSize:13
                    },
                },
                legend: {
                    left:'right',
                    data: ['图例1', '图例2']
                },
                tooltip : {
                    show:false,
                    trigger: 'axis',
                    axisPointer : {            // 坐标轴指示器,坐标轴触发有效
                        type : 'shadow'        // 默认为直线,可选为:'line' | 'shadow'
                    }
                },
                grid: {
                    left: '3%',
                    right: '4%',
                    bottom: '3%',
                    containLabel: true
                },
                xAxis:  {
                    type:'time',
                    min:"2018-07-25"
                },
                yAxis: {
                    type: 'category',
                    axisTick:{       //y轴刻度线
                        "show":false
                    },
                    axisLine :{
                        "show": false
                    }
                },
                series:[
                    {
            name:'已完工',
            type:'bar',
            stack:'工作中心',
            label: {
                normal: {
                    show: true,
                    position: 'inside',
                    formatter: function (params) {
                        if (params.data[0] != '') {
                            return params.data[0];
                        } else {
                            return '';
                        }
                    }
                }
            },
            data:[['2018-08-01','x1'],['2018-07-28','x2']]
                },
              {
            name:'未派工|已派工',
            type:'bar',
            stack:'工作中心',
            label: {
                normal: {
                    show: true,
                    position: 'inside',
                    formatter: function (params) {
                        if (params.data[0] != '') {
                            return params.data[0];
                        } else {
                            return '';
                        }
                    }
                }
            },
            data:[['2018-08-05','x1'],['2018-08-04','x2']]
                },
                ]
};

    
截图如下