UNPKG

angular-advance-chart

Version:

Angular Advance Chart provides chart solution for Angular.Currently supports Bar, Pie and Donut chart

15 lines (14 loc) 418 B
import { ElementRef, Renderer2 } from '@angular/core'; export declare class TooltipDirective { private el; private renderer; tooltipTitle: string; tooltip: HTMLElement; constructor(el: ElementRef, renderer: Renderer2); onMouseEnter(event: any): void; onMouseLeave(): void; show(event: any): void; hide(): void; create(): void; setPosition(event: any): void; }