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

   ### Version
   
   5.5.0
   
   ### Link to Minimal Reproduction
   
   none
   
   ### Steps to Reproduce
   
   ```
   option = {
     title: {
       text: 'World Population'
     },
     tooltip: {
       trigger: 'axis',
       axisPointer: {
         type: 'shadow'
       }
     },
     legend: {},
     grid: {
       left: '3%',
       right: '4%',
       bottom: '3%',
       containLabel: true
     },
     xAxis: {
       type: 'value',
       boundaryGap: [0, 0.01]
     },
     yAxis: {
       triggerEvent:true,
       type: 'category',
       axisLabel:{
         margin:6,
         width:140,
         overflow:'truncate',
         formatter:(value,index)=>{
           return `${value}`
         }
       },
       data: ['Brazil', 'IndonesiaIndonesiaIndonesiaIndonesia', 'USA', 'India', 
'China', 'World'],
      
     },
     series: [
       {
         name: '2011',
         type: 'bar',
         data: [18203, 23489, 29034, 104970, 131744, 630230]
       }
     ]
   };
   ```
   
   use this options create eCharts Horizontal bar in [Official Demo 
Site](https://echarts.apache.org/examples/zh/editor.html?c=bar-y-category),then 
yAxis mouse effect is invalid and  the binding event is not triggered
   
   
   
   ### Current Behavior
   
   the mouse gesture effect is invalid, and the binding event is not triggered.
   
   ### Expected Behavior
   
   the mouse gesture effectand the binding event is triggered.
   
   ### 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