@swimlane/ngx-charts
Version:
Declarative Charting Framework for Angular2 and beyond!
15 lines (14 loc) • 444 B
TypeScript
import { EventEmitter, OnChanges, ElementRef, SimpleChanges } from '@angular/core';
export declare class LineComponent implements OnChanges {
private element;
path: any;
stroke: any;
data: any;
fill: string;
select: EventEmitter<{}>;
initialized: boolean;
initialPath: string;
constructor(element: ElementRef);
ngOnChanges(changes: SimpleChanges): void;
animateToCurrentForm(): void;
}