Dokumentation
parent
a7fa0276cd
commit
e711990650
|
|
@ -36,13 +36,20 @@ export const MY_DATE_FORMATS = {
|
|||
]
|
||||
})
|
||||
export class NttGanttComponent implements OnInit {
|
||||
|
||||
/**###################################################################### Variable Declarations and Definitions ######################################################################*/
|
||||
|
||||
/**############################### ViewChild Components /**###############################*/
|
||||
@ViewChild('ganttObject')
|
||||
public ganttDefault!: GanttComponent;
|
||||
|
||||
@ViewChild('plantimeComponent')
|
||||
public plantimeComponent!: PlanTimeBarComponent;
|
||||
|
||||
@ViewChild(MatPaginator) paginator: MatPaginator;
|
||||
|
||||
/**############################### Default Variables /**###############################*/
|
||||
|
||||
public range = new FormGroup({
|
||||
start: new FormControl<Date | null>(new Date('12/01/2022')),
|
||||
end: new FormControl<Date | null>(new Date('01/31/2024')),
|
||||
|
|
@ -105,6 +112,7 @@ export class NttGanttComponent implements OnInit {
|
|||
public oldSort = null;
|
||||
public planTimes : any[] = [];
|
||||
|
||||
/**###################################################################### Initial Loading functions ######################################################################*/
|
||||
|
||||
/**
|
||||
* The constructor injects required dependencies
|
||||
|
|
|
|||
Loading…
Reference in New Issue