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