diff options
author | Nevena Bojovic <nenabojov@gmail.com> | 2022-04-28 17:07:28 +0200 |
---|---|---|
committer | Nevena Bojovic <nenabojov@gmail.com> | 2022-04-28 17:07:28 +0200 |
commit | 8646b0f5fff359b55070362bf734af20c923a369 (patch) | |
tree | 19038cd2964c323094d93299e1a704af04cb8848 /frontend/src/app/app.module.ts | |
parent | 3d10d260aea0b9faf399d009ed716191a915ade0 (diff) |
Heat Map...
Diffstat (limited to 'frontend/src/app/app.module.ts')
-rw-r--r-- | frontend/src/app/app.module.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/src/app/app.module.ts b/frontend/src/app/app.module.ts index c46381d5..fc6d3c6b 100644 --- a/frontend/src/app/app.module.ts +++ b/frontend/src/app/app.module.ts @@ -47,6 +47,8 @@ import { ColumnTableComponent } from './_elements/column-table/column-table.comp import { FolderComponent } from './_elements/folder/folder.component'; import { TestComponent } from './_pages/test/test.component'; import { DoughnutChartComponent } from './_elements/_charts/doughnut-chart/doughnut-chart.component'; +import { HeatmapComponent } from './_elements/_charts/heatmap/heatmap.component'; +import { HeatMapAllModule } from '@syncfusion/ej2-angular-heatmap'; export function initializeApp(appConfig: Configuration) { return () => appConfig.load(); @@ -83,6 +85,7 @@ export function initializeApp(appConfig: Configuration) { MissingvaluesDialogComponent, TestComponent, DoughnutChartComponent, + HeatmapComponent ], imports: [ BrowserModule, @@ -97,6 +100,7 @@ export function initializeApp(appConfig: Configuration) { MatIconModule, NgChartsModule, Ng2SearchPipeModule, + HeatMapAllModule ], providers: [ Configuration, |