aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/app/_elements/_charts/box-plot/box-plot.component.ts
blob: 56f87057edbd03ecad69ddd2bf908e4e85d124e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { AfterViewInit, Component, ElementRef, OnInit, ViewChild } from '@angular/core';
import {Chart} from 'node_modules/chart.js';

@Component({
  selector: 'app-box-plot',
  templateUrl: './box-plot.component.html',
  styleUrls: ['./box-plot.component.css']
})
export class BoxPlotComponent implements OnInit {

  constructor() { }

  ngOnInit(): void {
  }

}