You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@echarts.apache.org by GitBox <gi...@apache.org> on 2018/09/16 13:10:39 UTC

[GitHub] realeve opened a new issue #9085: 极坐标系下 柱状图不支持 borderRadius

realeve opened a new issue #9085: 极坐标系下 柱状图不支持 borderRadius
URL: https://github.com/apache/incubator-echarts/issues/9085
 
 
   <!--
   为了方便我们能够复现和修复 bug,请遵从下面的规范描述您的问题。
   -->
   
   ```js
   option = {
       angleAxis: {
       },
       radiusAxis: {
           type: 'category',
           data: ['周一', '周二', '周三', '周四']
       },
       polar: {
       },
       series: [{
           type: 'bar',
           data: [2, 3, 3, 4],
           coordinateSystem: 'polar',
           barMaxWidth:20,
           itemStyle: {
               normal: {
                   barBorderRadius: 10
               }
           }
       }]
   };
   ```
   
   ![image](https://user-images.githubusercontent.com/448208/45596837-e92d0280-b9f4-11e8-9da1-dc42546b1db9.png)
   
   
   ### 笛卡尔坐标系正常
   
   ```js
   option = {
       yAxis: {
       },
       xAxis: {
           type: 'category',
           data: ['周一', '周二', '周三', '周四']
       },
       series: [{
           type: 'bar',
           data: [2, 3, 3, 4],
           barMaxWidth:20,
           itemStyle: {
               normal: {
                   barBorderRadius: 10
               }
           }
       }]
   };
   ```
   ![image](https://user-images.githubusercontent.com/448208/45596840-f0eca700-b9f4-11e8-8148-a6fc54d06950.png)
   
   ### Other comments [其他信息]
   <!-- For example: Screenshot or Online demo -->
   <!-- [例如,截图或线上实例 (JSFiddle/JSBin/Codepen)] -->
   
   

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@echarts.apache.org
For additional commands, e-mail: dev-help@echarts.apache.org