import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-plot', templateUrl: './plot.component.html', styleUrls: ['./plot.component.css'] }) export class PlotComponent implements OnInit { constructor() { } ngOnInit() { } }