Alan055 opened a new issue, #18089:
URL: https://github.com/apache/echarts/issues/18089

   ### What problem does this feature solve?
   
   使用的是54.1的版本代码如下
   
   option = {
     angleAxis: {},
     radiusAxis: {
       type: 'category',
       data: ['应收工程款', '甲1234', '甲方报量报出', '内部产值'],
       z: 10,
       axisLabel: {
         hideOverlap: false,
         showMaxLabel: true,
       }
     },
     polar: {},
     series: [
       {
         type: 'bar',
         data: [8],
         coordinateSystem: 'polar',
         emphasis: {
           focus: 'series'
         }
       },
       {
         type: 'bar',
         data: [0, 8,],
         coordinateSystem: 'polar',
         emphasis: {
           focus: 'series'
         }
       },
       {
         type: 'bar',
         data: [0, 0, 8, 0],
         coordinateSystem: 'polar',
         emphasis: {
           focus: 'series'
         }
       },
       {
         type: 'bar',
         data: [0, 0, 0, 8],
         coordinateSystem: 'polar',
         emphasis: {
           focus: 'series'
         }
       }
     ],
     legend: {
       show: true,
       data: ['A', 'B', 'C']
     }
   };
   
   **如下图所示,radiusAxis.data中的第二个坐标名称没有显示**
   
   
![image](https://user-images.githubusercontent.com/38103380/208869578-a98e835d-46ea-440d-9d6b-784bc0a934b8.png)
   
   
   ### 想问下如何才能在极坐标中展示所有的坐标name
   
   
   ### What does the proposed API look like?
   
   使用的是54.1的版本代码如下
   
   option = {
     angleAxis: {},
     radiusAxis: {
       type: 'category',
       data: ['应收工程款', '甲1234', '甲方报量报出', '内部产值'],
       z: 10,
       axisLabel: {
         hideOverlap: false,
         showMaxLabel: true,
       }
     },
     polar: {},
     series: [
       {
         type: 'bar',
         data: [8],
         coordinateSystem: 'polar',
         emphasis: {
           focus: 'series'
         }
       },
       {
         type: 'bar',
         data: [0, 8,],
         coordinateSystem: 'polar',
         emphasis: {
           focus: 'series'
         }
       },
       {
         type: 'bar',
         data: [0, 0, 8, 0],
         coordinateSystem: 'polar',
         emphasis: {
           focus: 'series'
         }
       },
       {
         type: 'bar',
         data: [0, 0, 0, 8],
         coordinateSystem: 'polar',
         emphasis: {
           focus: 'series'
         }
       }
     ],
     legend: {
       show: true,
       data: ['A', 'B', 'C']
     }
   };
   
   **如下图所示,radiusAxis.data中的第二个坐标名称没有显示**
   
   
![image](https://user-images.githubusercontent.com/38103380/208869578-a98e835d-46ea-440d-9d6b-784bc0a934b8.png)
   
   
   ### 想问下如何才能在极坐标中展示所有的坐标name
   


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

To unsubscribe, e-mail: commits-unsubscr...@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


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

Reply via email to