diff options
author | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-05-09 00:35:24 +0200 |
---|---|---|
committer | TAMARA JERINIC <tamara.jerinic@gmail.com> | 2022-05-09 00:35:24 +0200 |
commit | 871dd94fc9c5d037bac69d0be95b7e73361949a4 (patch) | |
tree | 68a55a8f9500c5f2a3b040db54a6ef1c5afe5654 /frontend/src/app/_elements/_charts/pie-chart/pie-chart.component.ts | |
parent | 7bbfc185eaaad9149e23a9f4b249105cb47ccbcf (diff) | |
parent | 6a9016849d5b5e36897395efdb47c0aa39235c69 (diff) |
Merge branch 'redesign' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into redesign
Diffstat (limited to 'frontend/src/app/_elements/_charts/pie-chart/pie-chart.component.ts')
-rw-r--r-- | frontend/src/app/_elements/_charts/pie-chart/pie-chart.component.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/frontend/src/app/_elements/_charts/pie-chart/pie-chart.component.ts b/frontend/src/app/_elements/_charts/pie-chart/pie-chart.component.ts index f141f522..932ed963 100644 --- a/frontend/src/app/_elements/_charts/pie-chart/pie-chart.component.ts +++ b/frontend/src/app/_elements/_charts/pie-chart/pie-chart.component.ts @@ -10,6 +10,8 @@ export class PieChartComponent implements AfterViewInit { @Input()width?: number; @Input()height?: number; + @Input()uniqueValues?: string[] = []; + @Input()uniqueValuesPercent?: number[] = []; @ViewChild('piechart') chartRef!: ElementRef; constructor() { } |