MC-YCY opened a new issue, #19433: URL: https://github.com/apache/echarts/issues/19433
### Version 5.4.3 ### Link to Minimal Reproduction https://www.isqqw.com/viewer?id=43032 ### Steps to Reproduce ```js option = { title: { text: 'Referer of a Website', subtext: 'Fake Data', left: 'center' }, tooltip: { trigger: 'item', show: false, }, legend: { orient: 'vertical', left: 'left' }, series: [ { name: 'Access From', type: 'pie', radius: '50%', data: [ { value: 1048, name: 'Search Engine', select: { itemStyle: { shadowColor: '#5470c6' } } }, { value: 735, name: 'Direct', select: { itemStyle: { shadowColor: '#91cc75' } } }, { value: 580, name: 'Email', select: { itemStyle: { shadowColor: '#fac858' } } }, { value: 484, name: 'Union Ads', select: { itemStyle: { shadowColor: '#ee6666' } } }, { value: 300, name: 'Video Ads', select: { itemStyle: { shadowColor: '#73c0de' } } } ], selectedMode: true, selectedOffset: 15, select: { itemStyle: { shadowBlur: 10 } }, labelLine: { show: false }, emphasis: { disabled: true, } } ] }; myChart.on('mouseover', (event) => { console.log(event) myChart.dispatchAction({ type: 'select',//默认显示江苏的提示框 seriesIndex: 0,//这行不能省 dataIndex: event.dataIndex }); }) ``` ### Current Behavior 各个选中的元素,设置的偏移量selectedOffset和间距不一致   选中第一个饼图同其它选中饼图的距离不一致 ### Expected Behavior 期望所有选中的间距都一致 ### Environment ```markdown - OS:window11 - Browser:Microsoft Edge 版本 120.0.2210.77 (正式版本) (64 位) - Framework:html5 ``` ### Any additional comments? _No response_ -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
