diff options
author | Kumar, Sudarshan (sk670p) <sk670p@att.com> | 2021-04-26 23:41:22 +0530 |
---|---|---|
committer | Kumar, Sudarshan (sk670p) <sudarshan.kumar@att.com> | 2021-04-27 16:00:40 +0530 |
commit | 1f7ed8d80f03f288181718a3572896ac48849163 (patch) | |
tree | 8319d99d4e4ccd594342d7dd5243fbe9bd26a3d4 /ecomp-sdk/epsdk-app-os/ngappsrc | |
parent | 1b63decb2f3b05786008be746063069581934253 (diff) |
Integrating Stacked Column Chart SDK-Raptor
Integrating Stacked Column Chart SDK-Raptor
Issue-ID: PORTAL-1068
Change-Id: I624e9ac3f6e52d5d4d501e46de979649a51f27ff
Signed-off-by: Sudarshan Kumar <sudarshan.kumar@att.com>
Diffstat (limited to 'ecomp-sdk/epsdk-app-os/ngappsrc')
3 files changed, 4 insertions, 3 deletions
diff --git a/ecomp-sdk/epsdk-app-os/ngappsrc/package.json b/ecomp-sdk/epsdk-app-os/ngappsrc/package.json index e36e8ae4..e60a8845 100644 --- a/ecomp-sdk/epsdk-app-os/ngappsrc/package.json +++ b/ecomp-sdk/epsdk-app-os/ngappsrc/package.json @@ -65,7 +65,8 @@ "sonar-scanner": "^3.1.0", "tslib": "^1.9.0", "web-animations-js": "^2.3.2", - "zone.js": "~0.8.26" + "zone.js": "~0.8.26", + "ng2-charts": "2.2.3" }, "devDependencies": { "@angular-devkit/build-angular": "^0.10.0", diff --git a/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-dashboard/bar-chart/bar-chart.component.ts b/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-dashboard/bar-chart/bar-chart.component.ts index 4b7a7811..15675360 100644 --- a/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-dashboard/bar-chart/bar-chart.component.ts +++ b/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-dashboard/bar-chart/bar-chart.component.ts @@ -45,7 +45,7 @@ import {Chart} from 'chart.js'; styleUrls: ['./bar-chart.component.scss'] }) export class BarChartComponent implements OnInit { - fixesEnhancementBarChart = []; + fixesEnhancementBarChart:any; constructor() { } ngOnInit() { diff --git a/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-dashboard/pie-chart/pie-chart.component.ts b/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-dashboard/pie-chart/pie-chart.component.ts index 356c85a6..8ed114e6 100644 --- a/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-dashboard/pie-chart/pie-chart.component.ts +++ b/ecomp-sdk/epsdk-app-os/ngappsrc/src/app/welcome-module/welcome-dashboard/pie-chart/pie-chart.component.ts @@ -46,7 +46,7 @@ import {Chart} from 'chart.js'; }) export class PieChartComponent implements OnInit { - userFeedbackRootCausePieChart = []; + userFeedbackRootCausePieChart :any; constructor() { } ngOnInit() { |