The pie label line horizontal display issue
- Dominant language
- TypeScript
- Stars
- 67.3k
- Forks
- 19.8k
- Avg merge
- 11d 14h
- Merged PRs (30d)
- 8
Description
### Version
5.1.1
### Reproduction link
[https://codesandbox.io/s/echarts-pie-horizontal-label-line-2j1bb?file=/src/option.js](https://codesandbox.io/s/echarts-pie-horizontal-label-line-2j1bb?file=/src/option.js)
### Steps to reproduce
I want to set the pie label line horizontal display. If set 'roseType: radius' it can't be horizontal. If 'roseType' not set. It will be ok.
```
{
series: [
{
name: "面积模式",
type: "pie",
radius: ["75%", "95%"],
center: ["50%", "50%"],
// 删除 roseType就能达到引导线水平显示效果
roseType: "radius",
color: ["#18dbfd", "#1883fd"],
labelLine: {
length: 0,
length2: 50
},
data: [
{ value: 50, name: "rose 1" },
{ value: 100, name: "rose 8" }
]
}
]
}
```
### What is expected?
Set 'roseType: radius' the label line is horizontal.
### What is actually happening?
The label line isn't horizontal.


Contributor guide
Assessment
This issue has not been assessed yet.