Skip to content

Commit

Permalink
timeline tooltip连续显示问题
Browse files Browse the repository at this point in the history
  • Loading branch information
kener committed Sep 2, 2014
1 parent 62a437e commit cc0e34a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/component/tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,10 @@ define(function (require) {
this._axisLineWidth = this.option.tooltip.axisPointer.lineStyle.width;
}
if (this.showing) {
this._tryShow();
var self = this;
setTimeout(function(){
self.zr.trigger(zrConfig.EVENT.MOUSEMOVE, self.zr.handler._event);
},50);
}
},

Expand Down

0 comments on commit cc0e34a

Please sign in to comment.