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

23 lines (22 loc) 1.23 kB
import { ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges, TemplateRef } from "@angular/core"; import { PopoverComponent } from "@nova-ui/bits"; import { IDataPointsPayload } from "../core/common/types"; import { ChartPopoverPlugin } from "../core/plugins/chart-popover-plugin"; import * as i0 from "@angular/core"; export declare class ChartPopoverComponent implements OnChanges, OnInit, OnDestroy { private changeDetector; element: ElementRef; plugin: ChartPopoverPlugin; template: TemplateRef<any>; update: EventEmitter<IDataPointsPayload>; popover: PopoverComponent; private readonly destroy$; private initPlugin$; constructor(changeDetector: ChangeDetectorRef, element: ElementRef); ngOnChanges(changes: SimpleChanges): void; ngOnInit(): void; ngOnDestroy(): void; private initPlugin; static ɵfac: i0.ɵɵFactoryDeclaration<ChartPopoverComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<ChartPopoverComponent, "nui-chart-popover", never, { "plugin": { "alias": "plugin"; "required": false; }; "template": { "alias": "template"; "required": false; }; }, { "update": "update"; }, never, never, false, never>; }