UNPKG

1.06 kBTypeScriptView Raw
1import { OnChanges, ElementRef, SimpleChanges, OnInit } from '@angular/core';
2import { Series } from '../models/chart-data.model';
3import * as i0 from "@angular/core";
4export declare class LineComponent implements OnChanges, OnInit {
5 private element;
6 private platformId;
7 path: string;
8 stroke: string;
9 data: Series;
10 fill: string;
11 animations: boolean;
12 initialized: boolean;
13 initialPath: string;
14 isSSR: boolean;
15 constructor(element: ElementRef, platformId: any);
16 ngOnInit(): void;
17 ngOnChanges(changes: SimpleChanges): void;
18 updatePathEl(): void;
19 static ɵfac: i0.ɵɵFactoryDeclaration<LineComponent, never>;
20 static ɵcmp: i0.ɵɵComponentDeclaration<LineComponent, "g[ngx-charts-line]", never, { "path": { "alias": "path"; "required": false; }; "stroke": { "alias": "stroke"; "required": false; }; "data": { "alias": "data"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "animations": { "alias": "animations"; "required": false; }; }, {}, never, never, false, never>;
21}