You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by GitBox <gi...@apache.org> on 2020/03/02 08:03:56 UTC

[GitHub] [incubator-echarts] karma2014 edited a comment on issue #12109: Angle axis in polar axis not rendering negative values correctly

karma2014 edited a comment on issue #12109: Angle axis in polar axis not rendering negative values correctly
URL: https://github.com/apache/incubator-echarts/issues/12109#issuecomment-593271084
 
 
   [(https://gallery.echartsjs.com/editor.html?c=xXsPmq1-U&v=1)]
   This case I have modified the data [1,1,1]to [2,2,2],and change the radiusAxis.min to 1, and found that the view is wrong.
   This is my option:
   ```
   option = {
       angleAxis: {
           type: 'category',
           data: ['S1', 'S2', 'S3']
       },
       radiusAxis: {
           min: 1,
           max: 6
       },
       polar: {
       },
       series: [{
           type: 'bar',
           data: [2, 2, 2],
           coordinateSystem: 'polar',
           itemStyle:{
               color:"blue"
               
           },
           name: 'A',
           stack: 'a'
       },
       {
           type: 'bar',
           data: [2, 2, 2],
           coordinateSystem: 'polar',
           name: 'B',
           stack: 'a'
       },
       {
           type: 'bar',
           data: [2, 2, 2],
           coordinateSystem: 'polar',
           name: 'C',
           stack: 'a'
       }],
       legend: {
           show: true,
           data: ['A', 'B', 'C']
       }
   };
   ```
   So I guess this ”min“ do not support value except 0.   

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


With regards,
Apache Git Services

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