-
Notifications
You must be signed in to change notification settings - Fork 19.8k
极坐标系下绘制柱状图,改变极坐标绘制方向时柱状图不更改绘制方向 #12902
Copy link
Copy link
Closed
Labels
bugenThis issue is in EnglishThis issue is in EnglishpendingWe are not sure about whether this is a bug/new feature.We are not sure about whether this is a bug/new feature.staleInactive for a long time. Will be closed in 7 days.Inactive for a long time. Will be closed in 7 days.waiting-for: community
Metadata
Metadata
Assignees
Labels
bugenThis issue is in EnglishThis issue is in EnglishpendingWe are not sure about whether this is a bug/new feature.We are not sure about whether this is a bug/new feature.staleInactive for a long time. Will be closed in 7 days.Inactive for a long time. Will be closed in 7 days.waiting-for: community
Type
Fields
Give feedbackNo fields configured for issues without a type.
Version
4.8.0
Steps to reproduce
options = {
angleAxis: {
type: 'value',
max: 120,
show: true,
clockwise: false,
},
radiusAxis: {
type: 'category',
show: true,
axisLabel: {
show: false,
},
axisLine: {
show: false,
},
axisTick: {
show: false,
},
},
polar: {
radius: ['80%', '100%'],
center: ['50%', '50%'],
},
series: [
{
coordinateSystem: 'polar',
type: 'bar',
data: [110],
}
]
}
What is expected?
极坐标系改变绘制方向时柱状图能根据极坐标的方向绘制
What is actually happening?
图表初始绘制完成后,修改 angleAxis.clockwise = true