AaronAlphabet commented on issue #4856: 环形图 进度条两端如何设置圆角? URL: https://github.com/apache/incubator-echarts/issues/4856#issuecomment-434247867 @100pah ,下面是我测试的option,你可以看看,应该是不支持,如果支持,请把你的option 贴一下,谢谢 ^_^,有时候很需要这个功能。 ``` app.title = '极坐标系下的堆叠柱状图'; option = { angleAxis: { }, radiusAxis: { type: 'category', data: ['周一', '周二', '周三', '周四'], z: 10 }, polar: { }, series: [{ type: 'bar', data: [1, 2, 3, 4], coordinateSystem: 'polar', name: 'A', itemStyle:{ barBorderRadius:'50%' } }], legend: { show: true, data: ['A'] } }; ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
