Setting `options.polar.radius` to an `Array` kills the chart, no error reported in browser console.echarts 柱状配置项内容和展示

Trying to use the polar component with both a min raius and a max radius set. Now everything is correctly set except when setting `options.polar.radius` to an `Array` could just stop the chart from showing, no error in the browser console is reported.

配置项如下
      option = {
    title: {
        text: 'Set polar.radius to an array kills the chart'
    },
    'angleAxis': {
        type: 'category',
        data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat']
    },
    radiusAxis: {
    },
    polar: {
        // radius: 80 // works
        // radius: '80%' // works
        
        // radius: ['80%'], // fail
        // radius: [80], // works     
        
        radius: ['10%', '80%'], // fail
    },
    series: [{
        type: 'bar',
        coordinateSystem: 'polar',
        data:[220, 182, 191, 234, 290, 330, 310]
    }]
};
    
截图如下