-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Closed
Description
option = {
angleAxis: {
},
radiusAxis: {
type: 'category',
data: ['周一', '周二', '周三', '周四']
},
polar: {
},
series: [{
type: 'bar',
data: [2, 3, 3, 4],
coordinateSystem: 'polar',
barMaxWidth:20,
itemStyle: {
normal: {
barBorderRadius: 10
}
}
}]
};笛卡尔坐标系正常
option = {
yAxis: {
},
xAxis: {
type: 'category',
data: ['周一', '周二', '周三', '周四']
},
series: [{
type: 'bar',
data: [2, 3, 3, 4],
barMaxWidth:20,
itemStyle: {
normal: {
barBorderRadius: 10
}
}
}]
};
