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

   ### Version
   
   5.2.1
   
   ### Link to Minimal Reproduction
   
   _No response_
   
   ### Steps to Reproduce
   
   use the following options
   ```
   option = {
     tooltip: {},
     legend: {
       right: 70,
       type: 'scroll',
       data: [
         'A',
         'B',
         'C',
       ]
     },
     radar: {
       indicator: [
         { name: '1' },
         { name: '2' },
         { name: '3' },
         { name: '4' },
         { name: '5' },
         { name: '6' },
         { name: '7' },
         { name: '8' }
       ],
       nameGap: 8,
       startAngle: 90,
       splitNumber: 5
     },
     series: [
       {
         type: 'radar',
         name: 'A',
         colorBy: 'series',
         data: [
           {
             name: 'A',
             value: ['8', '19', '0', '0', '0', '6', '0', '7'],
             areaStyle: {},
             tooltip: {},
           }
         ]
       },
       {
         type: 'radar',
         name: 'B',
         colorBy: 'series',
         data: [
           {
             name: 'B',
             value: ['6', '19', '8', '10', '6', '10', '5', '6'],
             areaStyle: {},
             tooltip: {},
           }
         ]
       },
     ]
   };
   
   ```
   
   ### Current Behavior
   
   Dots from lower radar appear on the top of higher radars. Though I didn't 
find a way to inspect their z-index values, it seems that dots have larger 
values of z-index than radar area's. 
   
   The radar in blue lies under the green one. Hovering on the blue dots still 
triggers tooltips.
   
   
![image](https://user-images.githubusercontent.com/59444375/177289527-4a4df9e9-3dda-4aca-807b-2ce7e9c878ff.png)
   
   
   ### Expected Behavior
   
   The dots in blue should reside under the green radar
   
   ### Environment
   
   ```markdown
   - OS: windows 10
   - Browser: chrome
   - Framework: vue
   ```
   
   
   ### 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: 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