Shows/hides the tooltip
(origin?: {x: number; y: number})
| 486 | |
| 487 | /** Shows/hides the tooltip */ |
| 488 | toggle(origin?: {x: number; y: number}): void { |
| 489 | this._isTooltipVisible() ? this.hide() : this.show(undefined, origin); |
| 490 | } |
| 491 | |
| 492 | /** Returns true if the tooltip is currently visible to the user */ |
| 493 | _isTooltipVisible(): boolean { |
nothing calls this directly
no test coverage detected