@swimlane/ngx-charts
Version:
Declarative Charting Framework for Angular
28 lines (27 loc) • 939 B
TypeScript
import { ElementRef, AfterViewInit, Renderer2 } from '@angular/core';
import { PlacementTypes } from './position';
import { StyleTypes } from './style.type';
import { AlignmentTypes } from './alignment.type';
export declare class TooltipContentComponent implements AfterViewInit {
element: ElementRef;
private renderer;
host: any;
showCaret: boolean;
type: StyleTypes;
placement: PlacementTypes;
alignment: AlignmentTypes;
spacing: number;
cssClass: string;
title: string;
template: any;
context: any;
caretElm: any;
readonly cssClasses: string;
constructor(element: ElementRef, renderer: Renderer2);
ngAfterViewInit(): void;
position(): void;
positionContent(nativeElm: any, hostDim: any, elmDim: any): void;
positionCaret(hostDim: any, elmDim: any): void;
checkFlip(hostDim: any, elmDim: any): void;
onWindowResize(): void;
}