@swimlane/ngx-charts
Version:
Declarative Charting Framework for Angular2 and beyond!
56 lines (49 loc) • 961 B
text/typescript
import {
Component,
Input,
Output,
EventEmitter,
ElementRef,
trigger,
style,
transition,
animate,
ChangeDetectionStrategy
} from '@angular/core';
export class LineComponent {
path;
stroke;
data;
select = new EventEmitter();
element: ElementRef;
constructor(element: ElementRef) {
this.element = element.nativeElement;
}
}