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

   ### Version
   
   5.4
   
   ### Link to Minimal Reproduction
   
   https://echarts.apache.org/examples/zh/editor.html?c=bar3d-dataset&gl=1
   
   ### Steps to Reproduce
   
   摘自echarts官网实例
   
   option = {
         grid3D: {},
         tooltip: {},
         xAxis3D: {
           type: 'category'
         },
         yAxis3D: {
           type: 'category'
         },
         zAxis3D: {},
         visualMap: {
           max: 1e8,
           dimension: 'Population'
         },
         dataset: {
           dimensions: [
             'Income',
             'Life Expectancy',
             'Population',
             'Country',
             { name: 'Year', type: 'ordinal' }
           ],
           source: data
         },
         series: [
           {
             type: 'bar3D',
             // symbolSize: symbolSize,
             shading: 'lambert',
             encode: {
               x: 'Year',
               y: 'Country',
               z: 'Life Expectancy',
               tooltip: [0, 1, 2, 3, 4]
             }
           }
         ]
       };
   
   ### Current Behavior
   
   鼠标移入,弹出tooltip
   鼠标移走,tooltip不消失,
   发现 bar3D 中使用dataset就会出现此问题,不使用dataset的话,tooltip正常
   
   ### Expected Behavior
   
   使用dataset 鼠标移入移出,tooltip能自动消失
   
   ### 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