100pah commented on issue #11903: Tooltip for Labels on Axis
URL: 
https://github.com/apache/incubator-echarts/issues/11903#issuecomment-568916866
 
 
   Current it can not. 
   
   We can only trigger tooltip manually:
   
   ```js
   xAxis: {
       triggerEvent:true
   }
   ```
   
   ```js
   chart.on('mouseover', function (params) {
       chart.dispatchAction({
           type: 'xxx',   // trigger tooltip.
       })
   });
   ```
   
   And this might be a new feature to show tooltip on axis.

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

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

Reply via email to