wpf-Shine opened a new issue, #19236:
URL: https://github.com/apache/echarts/issues/19236

   ### Version
   
   5.4.3
   
   ### Link to Minimal Reproduction
   
   None
   
   ### Steps to Reproduce
   
   如下图所示:当雷达图的0、2、5 dimensionIndex的值为0时areaStyle出现异形:
   
![radar](https://github.com/apache/echarts/assets/69352281/7bcd6e74-ddd2-4d4f-87c9-9d7e57c30d68)
   
   
   ### Current Behavior
   
   option = {
     title: {
       text: 'Basic Radar Chart'
     },
     legend: {
       data: ['Allocated Budget', 'Actual Spending']
     },
     radar: {
       // shape: 'circle',
       indicator: [
          { name: 'Sales', max: 6500 },
         { name: 'Administration', max: 16000 },
         { name: 'Information Technology', max: 30000 },
         { name: 'Customer Support', max: 38000 },
         { name: 'Development', max: 52000 },
         { name: 'Marketing', max: 25000 }
       ]
     },
     series: [
       {
         name: 'Budget vs spending',
         type: 'radar',
         areaStyle: {
           opacity: 0.5
         },
         data: [
            {
             value: [0, 10000, 0, 20000, 20000, 0],
             name: 'Allocated Budget'
           },
         ]
       }
     ]
   };
   
   ### Expected Behavior
   
   实际图形应该是这样:
   ![radar 
(1)](https://github.com/apache/echarts/assets/69352281/52508f1e-0c17-4de6-9e08-e6b731a0f24b)
   
   
   ### Environment
   
   ```markdown
   - OS:
   - Browser:
   - Framework:
   ```
   
   
   ### Any additional comments?
   
   _No response_


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to