You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by sh...@apache.org on 2020/09/16 08:59:40 UTC

[incubator-echarts] branch master updated: fix: partially resolves #13164

This is an automated email from the ASF dual-hosted git repository.

shenyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git


The following commit(s) were added to refs/heads/master by this push:
     new 0a4cd62  fix: partially resolves #13164
     new a8b5464  Merge pull request #13283 from CarterLi/master
0a4cd62 is described below

commit 0a4cd628f93a24cf76f0fae9b0e525394e12de33
Author: 李通洲 <ca...@eoitek.com>
AuthorDate: Tue Sep 15 11:20:29 2020 +0800

    fix: partially resolves #13164
---
 src/echarts.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/echarts.js b/src/echarts.js
index ed84751..e2ea25e 100644
--- a/src/echarts.js
+++ b/src/echarts.js
@@ -1754,7 +1754,7 @@ function updateHoverLayerStatus(ecIns, ecModel) {
         elCount++;
     });
 
-    if (elCount > ecModel.get('hoverLayerThreshold') && !env.node) {
+    if (elCount > ecModel.get('hoverLayerThreshold') && !env.node && !env.worker) {
         ecModel.eachSeries(function (seriesModel) {
             if (seriesModel.preventUsingHoverLayer) {
                 return;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org