Browse Source

Merge pull request #1150 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit 'b535fc4461b6030c63b176d47298501e6239c2b2':
  CHART-10611 fix: 拖拽与title显示
es6
guy 5 years ago
parent
commit
ba1f11110b
  1. 6
      src/base/single/single.js

6
src/base/single/single.js

@ -111,7 +111,11 @@ BI.Single = BI.inherit(BI.Widget, {
clearTimeout(self.hideTimeout);
self.hideTimeout = null;
}
self._showToolTip(self._e || e, opt);
// CHART-10611 在拖拽的情况下, 鼠标拖拽着元素离开了拖拽元素的容器,但是子元素在dom结构上仍然属于容器
// 这样会认为鼠标仍然在容器中, 500ms内放开的话,会在容器之外显示鼠标停留处显示容器的title
if (self.element.__isMouseInBounds__(self._e || e)) {
self._showToolTip(self._e || e, opt);
}
}
}, 500);

Loading…
Cancel
Save