diff --git a/src/app/components/tooltip/tooltip.ts b/src/app/components/tooltip/tooltip.ts index 95ab90f6a28..b135cd2171c 100755 --- a/src/app/components/tooltip/tooltip.ts +++ b/src/app/components/tooltip/tooltip.ts @@ -424,7 +424,11 @@ export class Tooltip implements AfterViewInit, OnDestroy { } this.create(); - this.align(); + + setTimeout(() => { + this.align(); + }, 100); + DomHandler.fadeIn(this.container, 250); if (this.getOption('tooltipZIndex') === 'auto') ZIndexUtils.set('tooltip', this.container, this.config.zIndex.tooltip);