MCPcopy
hub / github.com/apache/echarts / hide

Method hide

src/component/tooltip/TooltipHTMLContent.ts:517–529  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

515 }
516
517 hide() {
518 const style = this.el.style;
519 if (this._enableDisplayTransition) {
520 style.visibility = 'hidden';
521 style.opacity = '0';
522 }
523 else {
524 style.display = 'none';
525 }
526 env.transform3dSupported && (style.willChange = '');
527 this._show = false;
528 this._longHideTimeout = setTimeout(() => this._longHide = true, 500) as any;
529 }
530
531 hideLater(time?: number) {
532 if (this._show && !(this._inContent && this._enterable) && !this._alwaysShowContent) {

Callers 7

hideLaterMethod · 0.95
IFunction · 0.45
cFunction · 0.45
jquery.min.jsFile · 0.45
ibFunction · 0.45
createIconPathsMethod · 0.45
renderMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected