yangfei4913438 commented on issue #16436:
URL: https://github.com/apache/echarts/issues/16436#issuecomment-1055202133


   
   
   
   > 抱歉,我无法打开您提供的链接。请将其保存在机器人提到的上述链接中。 这个问题应该已经在 5.3.0 中修复了。
   
   在官网的demo中就可以复现这个问题。
   
   链接: https://echarts.apache.org/examples/zh/editor.html?c=pie-simple
   
   请使用下面的JS代码来复现:
   
   ```js
   option = {
     tooltip: {
       trigger: 'item'
     },
     legend: {
       orient: 'vertical', top: 'center', right: 'right'
     },
     series: [
       {
         name: 'Access From',
         type: 'pie',
         radius: '50%',
         // 修改这个值的大小来复现问题
         minShowLabelAngle: 30,
         data: [
           { value: 1048, name: 'Search Engine' },
           { value: 735, name: 'Direct' },
           { value: 580, name: 'Email' },
           { value: 484, name: 'Union Ads' },
           { value: 300, name: 'Video Ads' }
         ],
         emphasis: {
           itemStyle: {
             shadowBlur: 10,
             shadowOffsetX: 0,
             shadowColor: 'rgba(0, 0, 0, 0.5)'
           }
         }
       }
     ]
   };
   ```
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org
For additional commands, e-mail: commits-h...@echarts.apache.org

Reply via email to