柱状图label显示问题echarts 柱状配置项内容和展示

label设置显示为top,当柱状图小于0时,label会显示在柱形的顶部;如何在柱状为负数时,显示在底部呢?

配置项如下
      option = {
    title: {
        text: 'Awesome Chart'
    },
    xAxis: {
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    yAxis: {},
    series: [{
        type: 'bar',
        data: [220, {
            value:-182,
            label: {
                normal: {
                    show: true,
                    position: 'bottom'
                }
            }
        }, 191, 234, 290, 330, 310],
        itemStyle: {
            normal: {
                label: {
                    show: true,
                    position: 'top'
                }
            }
        },
    }]
};
    
截图如下