Large Barecharts 柱状配置项内容和展示

配置项如下
      option = {
    color: ["#ff3d00 ", "#607d8b"],
    grid: {
        left: '0',
        right: '0',
        bottom: '0',
        top: 0,
        containLabel: false
    },
    xAxis: {
        show: false,
        type: 'value'
    },
    yAxis: {
        show: false,
        type: 'category',
        data: ['周一']
    },
    series: [{
        name: '直接访问',
        type: 'bar',
        stack: '总量',
        data: ["571.324"]
    }, {
        name: '邮件营销',
        type: 'bar',
        stack: '总量',
        data: ["784.166"]
    }]
};
    
截图如下