ThomasChan edited a comment on issue #9626: 极坐标系下的柱状图
URL: 
https://github.com/apache/incubator-echarts/issues/9626#issuecomment-494257745
 
 
   @Ovilia i still get this problem in version `echarts-4.2.1-rc3`
   
   you can try following options:
   ```
   option = {
       angleAxis: {
           max: 5,
       },
       radiusAxis: {
           type: 'category',
           data: ['周一', '周二'],
           z: 10
       },
       polar: {
       },
       series: [{
           type: 'bar',
           data: [4, 4],
           coordinateSystem: 'polar',
           name: 'A',
           barGap: "-100%",
           barWidth: '60%',
           itemStyle: {
               normal: {
                   color: '#dadada'
               }
           }
       }, {
           type: 'bar',
           data: [1, 2],
           coordinateSystem: 'polar',
           name: 'B',
           barWidth: '60%',
       }]
   };
   ```
   
   you will see category 'A' and 'B' barWidth is not equal to '60%',
   and this problem only happen when barWidth large than '50%'.

----------------------------------------------------------------
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.
 
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]

Reply via email to