饼状图百分比出错echarts 饼配置项内容和展示

想知道什么情况下会出现如图所示的情况?

配置项如下
      option = {
    tooltip: {
    trigger: 'item',
    formatter: "{a} <br/>{b} : {c} ({d}%)"
  },
  series: [{
      name: '个人成单率',
      type: 'pie',
      radius: ['50%', '70%'],//圈
      label: {//文字居中
          normal: {
              position: 'center'
          }
      },
      data: [{
          value: 8,
          name: '占有率',
          label: {
              normal: {
                  formatter: '{d} %',
                  textStyle: {
                      fontSize: 14
                  }
              }
          }
      }, {
          value: 3-8,
          name: '占位',
          label: {
              normal: {
                  formatter: '\n完成率',
                  textStyle: {
                      color: '#555',
                      fontSize: 12
                  }
              }
          },
          tooltip: {
              show: false
          },
          itemStyle: {
              normal: {
                  color: '#e1dfdc'
              },
              emphasis: {
                  color: '#e1dfdc'
              }
          },
          hoverAnimation: false
      }]
  }]
};
    
截图如下