情感倾向echarts 柱状配置项内容和展示

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

option = {
    angleAxis: {
    },
    radiusAxis: {
        type: 'category',
        data: ['家属责任', '医院责任', '产妇责任'],
        z: 10
    },
    polar: {
    },
    series: [{
        type: 'bar',
        data: [132,0,0],
        coordinateSystem: 'polar',
        name: '',
        stack: 'a'
    }, {
        type: 'bar',
        data: [0,81,0],
        coordinateSystem: 'polar',
        name: '',
        stack: 'a'
    }, {
        type: 'bar',
        data: [0,0,24],
        coordinateSystem: 'polar',
        name: '',
        stack: 'a'
    }],
    legend: {
        show: true,
        data: ['A', 'B', 'C']
    }
};

    
截图如下