参考链接(https://blog.csdn.net/flting1017/article/details/79743598?utm_source=blogxgwz2

    1. backgroundColor : '#fff',
    2. series: [{
    3. type: 'pie',
    4. radius: ['30%', '60%'],
    5. data: [
    6. { value: 20, name: '研究开发' },
    7. { value: 80, name: '验证使用' },
    8. ],
    9. itemStyle: {
    10. borderWidth: 5,
    11. borderColor: '#fff', //注意,边框颜色要与背景颜色一样;
    12. },
    13. label: {
    14. show: false, //是否在图上显示标签;
    15. label: {
    16. show: true,
    17. formatter: '{d}' + '%',
    18. },
    19. },
    20. };

    效果如下:
    饼图--板块之间显示空隙,标签线显示百分值 - 图1