UNPKG

@nova-ui/charts

Version:

Nova Charts is a library created to provide potential consumers with solutions for various data visualizations that conform with the Nova Design Language. It's designed to solve common patterns identified by UX designers, but also be very flexible so that

29 lines (28 loc) 1.55 kB
import { Overlay, OverlayPositionBuilder, ScrollStrategyOptions } from "@angular/cdk/overlay"; import { ConnectedPosition } from "@angular/cdk/overlay"; import { ElementRef, OnDestroy, OnInit, TemplateRef } from "@angular/core"; import { Subject } from "rxjs"; import * as i0 from "@angular/core"; /** @ignore */ export declare class ChartTooltipDirective implements OnInit, OnDestroy { private overlay; private overlayPositionBuilder; private scrollStrategyOptions; elementRef: ElementRef<HTMLElement>; template: TemplateRef<any>; openRemoteControl: Subject<void>; closeRemoteControl: Subject<void>; positions: ConnectedPosition[]; private overlayRef; private openSubscription; private closeSubscription; private positionStrategy; constructor(overlay: Overlay, overlayPositionBuilder: OverlayPositionBuilder, scrollStrategyOptions: ScrollStrategyOptions, elementRef: ElementRef<HTMLElement>); ngOnInit(): void; show(): void; hide(): void; ngOnDestroy(): void; getOverlayElement(): HTMLElement; static ɵfac: i0.ɵɵFactoryDeclaration<ChartTooltipDirective, never>; static ɵdir: i0.ɵɵDirectiveDeclaration<ChartTooltipDirective, "[nuiChartTooltip]", never, { "template": { "alias": "template"; "required": false; }; "openRemoteControl": { "alias": "openRemoteControl"; "required": false; }; "closeRemoteControl": { "alias": "closeRemoteControl"; "required": false; }; "positions": { "alias": "positions"; "required": false; }; }, {}, never, never, false, never>; }