diff --git a/frontend/src/app/ntt-gantt/ntt-gantt.component.html b/frontend/src/app/ntt-gantt/ntt-gantt.component.html index 8dca7e5..ba90d4b 100644 --- a/frontend/src/app/ntt-gantt/ntt-gantt.component.html +++ b/frontend/src/app/ntt-gantt/ntt-gantt.component.html @@ -208,7 +208,6 @@ - @@ -222,7 +221,7 @@ diff --git a/frontend/src/app/ntt-gantt/ntt-gantt.component.ts b/frontend/src/app/ntt-gantt/ntt-gantt.component.ts index 141f8ad..5c9c244 100644 --- a/frontend/src/app/ntt-gantt/ntt-gantt.component.ts +++ b/frontend/src/app/ntt-gantt/ntt-gantt.component.ts @@ -114,7 +114,7 @@ export class NttGanttComponent implements OnInit { public horizontalPosition: MatSnackBarHorizontalPosition = 'end'; public verticalPosition: MatSnackBarVerticalPosition = 'bottom'; public inputForTimeline = []; - public renderplanTime: boolean = false; + public renderplanTime: boolean = true; public planTimeScrollLeft: number = 0; public stateList: any[] = []; @@ -209,7 +209,8 @@ export class NttGanttComponent implements OnInit { this.renderGantt = false; this.firstLoad = true; this.sliceStart = 0; - this.sliceEnd = 200; + this.sliceEnd = 20; + this.dataService.getUser().then((res: any) => { console.log(res); @@ -428,7 +429,8 @@ export class NttGanttComponent implements OnInit { this.userPreferences = res.userPreferences; this.showDetails = res.userPreferences.showDetails; this.selectedScalar = this.scalars[res.userPreferences.view]; - this.changeScalar(); + console.log() + console.log("SELECETEDSCALAR########"+this.selectedScalar); this.dataService.fetchUserSupportGroup().then((res: any) => { @@ -454,6 +456,8 @@ export class NttGanttComponent implements OnInit { + + /**###################################################################### Data Mapping, Filter and Sorting Functions ######################################################################*/ /** @@ -542,6 +546,7 @@ export class NttGanttComponent implements OnInit { this.spin = false; this.showNoResultsError = true; this.renderplanTime = false; + } }); } @@ -713,14 +718,17 @@ export class NttGanttComponent implements OnInit { if (this.selectedScalar == this.scalars[0]) { this.timelineSettings = { topTier: { unit: 'Week' }, bottomTier: { format: 'dd', unit: 'Day', count: 1 } }; this.renderplanTime = false; + } if (this.selectedScalar == this.scalars[1]) { this.timelineSettings = { topTier: { unit: 'Month' }, bottomTier: { format: 'WW', unit: 'Week', count: 1 } }; this.renderplanTime = true; + } if (this.selectedScalar == this.scalars[2]) { this.timelineSettings = { topTier: { unit: 'Year' }, bottomTier: { format: 'MM', unit: 'Month', count: 1 } }; this.renderplanTime = false; + } this.editUserPreferences(); @@ -754,6 +762,7 @@ export class NttGanttComponent implements OnInit { this.plantimeComponent.changeDateRange(this.projectStartDate, this.projectEndDate); this.renderplanTime = true; + } } @@ -767,6 +776,7 @@ export class NttGanttComponent implements OnInit { this.plantimeComponent.changeDateRange(this.projectStartDate, this.projectEndDate); this.renderplanTime = true; + } } /**