Move large graph into graph-panel component and show real data
This commit is contained in:
parent
cd77e14178
commit
732526322f
7 changed files with 188 additions and 192 deletions
4
src/app/_interfaces/chart-data.ts
Normal file
4
src/app/_interfaces/chart-data.ts
Normal file
|
@ -0,0 +1,4 @@
|
|||
export interface ChartData {
|
||||
data: Array<number>;
|
||||
label: string;
|
||||
}
|
Reference in a new issue