zemelLeong opened a new issue #15021: URL: https://github.com/apache/echarts/issues/15021
### Version 5.1.1 ### Reproduction link [https://codesandbox.io/s/echarts-pie-border-bug-sm830?file=/src/option.js](https://codesandbox.io/s/echarts-pie-border-bug-sm830?file=/src/option.js) ### Steps to reproduce Use this option. The v5.1.0 pie circle center displays abnormal. The old version v4.x is ok. ``` option = { title: { text: '某站点用户访问来源', subtext: '纯属虚构', left: 'center' }, tooltip: { trigger: 'item' }, legend: { orient: 'vertical', left: 'left', }, color: ['#714fe3', '#5f75e5', '#5a9be7', '#5a9be7'], series: [ { name: '访问来源', type: 'pie', radius: '50%', // itemStyle: { // borderColor: 'red', // borderWidth: 5, // }, data: [ { value: 99, name: '搜索引擎', }, { value: 9, name: '直接访问', itemStyle: { }, }, { value: 19, name: '邮件营销', itemStyle: { }, }, { value: 8, name: '联盟广告', }, ], itemStyle: { borderColor: 'red', borderWidth: '5', }, emphasis: { itemStyle: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' } } } ] }; ``` ### What is expected? pie circle center is normal ### What is actually happening? pie circle center is abnormal   <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE --> <!-- This issue is in English. DO NOT REMOVE --> -- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
