极坐标柱状图每条柱子的label无法显示echarts 柱状配置项内容和展示

而且反向增长的情况下柱状的数据没有反过来,不知道如何调整

配置项如下
      app.title = '极坐标系下的堆叠柱状图';

option = {
    angleAxis: {
        min: 0,
        max: 360,
        interval: 30,
        clockwise: false
    },
    radiusAxis: {
        type: 'category',
        data: ['周一', '周二', '周三', '周四'],
        axisLabel:{
            color:'#000'
        },
        z: 10
    },
    polar: {
    },
    series: [{
        type: 'bar',
        itemStyle: {
            normal: {
                color:'#000',
                opacity:0.2
            }
        },
        data: [20,30, 40, 44],
        encode: {
            label: 3           
        },
        coordinateSystem: 'polar',
        name: 'A',
        label: {
            normal: {
                show:true,
                formatter:'{a}',
                color:'#000'
            }
        },
        stack: 'a'
    }]
};
    
截图如下