Browse Source

CHART-10611 fix: 拖拽与title显示

es6
windy 5 years ago
parent
commit
b535fc4461
  1. 4
      src/base/single/single.js

4
src/base/single/single.js

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

Loading…
Cancel
Save