iVapor commented on issue #7811: 环形图 设置cursor:default, 
图形上鼠标样式改成箭头,但是label上鼠标样式还是手状
URL: 
https://github.com/apache/incubator-echarts/issues/7811#issuecomment-517584811
 
 
   我参考 [Echarts 使用问题小结](https://github.com/shuangmianxiaoQ/myblog/issues/12)  
里的 **修改鼠标悬浮在图形元素上时的鼠标样式** 部分 解决问题。
   ``` 
   myChart.on('mousemove', function (params) {
           if (params.seriesIndex === 0) {
               myChart.getZr().setCursorStyle('default');
           }
       });
   ```

----------------------------------------------------------------
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