Bharat-dev opened a new issue #15980: URL: https://github.com/apache/echarts/issues/15980
### Version 5.2.2 ### Steps to reproduce Go to the example here https://echarts.apache.org/examples/en/editor.html?c=pie-simple Replace the JS code with following ``` option = { title: { text: 'Referer of a Website', subtext: 'Fake Data', left: 'center' }, tooltip: { trigger: 'item' }, legend: { orient: 'vertical', left: 'left' }, series: [ { name: 'Access From', type: 'pie', radius: ['50%', '80%'], // startAngle: 0, avoidLabelOverlap: false, label: { show: true, rotate: 'tangential', position: 'inside' }, data: [ { value: 60, name: 'Search Engine' }, { value: 60, name: 'Direct' }, { value: 60, name: 'Email' }, { value: 60, name: 'Union Ads' }, ], emphasis: { itemStyle: { shadowBlur: 10, shadowOffsetX: 0, shadowColor: 'rgba(0, 0, 0, 0.5)' } } } ] }; ``` ### What is expected? Expect the labels to be rotated so that they are easy to read. Like how the labels are displayed if we don't give the startAngle option. ### What is actually happening? The labels for some pies are displayed in reverse direction and making it hard to read in some cases <!-- 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. 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]
