70%echarts 饼配置项内容和展示

圆环中间留白怎么设置阴影 让六百看起来像在环上边

配置项如下
      var percent = 0.7;

function getData() {
    return [{
        value: percent,
        itemStyle: {
            normal: {
                color: '#fb358a',
                shadowBlur: 10,
                shadowColor: '#fb358a'
            }
        }
    }, {
        value: 1 - percent,
        itemStyle: {
            normal: {
                color: 'transparent'
            }
        }
    }];
}

option = {
    backgroundColor: '#fff',

    title: {
        text: (percent * 100) + '%',
        x: 'center',
        y: 'center',
        textStyle: {
            color: '#fff',
            fontWeight: 'bolder',
            fontSize: 64,
        }
    },
    series: [{
            type: 'pie',
            radius: ['39%', '49%'],
            silent: true,
            label: {
                normal: {
                    show: false,
                }
            },

            data: [{
                value: 1,
                itemStyle: {
                    normal: {
                        color: '#fff',
                        shadowBlur: 5,
                        shadowColor: '#ccc'

                    }
                }
            }],

            animation: false
        },

        {
            name: 'main',
            type: 'pie',
            radius: ['40%', '65%'],
            label: {
                normal: {
                    show: false,
                }
            },
            data: [{value: 1},{value:2}],
            
            animationEasingUpdate: 'cubicInOut',
            animationDurationUpdate: 500
        }
    ]
};

    
截图如下