-
Notifications
You must be signed in to change notification settings - Fork 2
Gantt Chart
Sukanya Dasgupta edited this page Jul 22, 2019
·
2 revisions
ganttChartData = [
{
name: 'Market Team',
timelines: {
'Market Research': [
{from: 'June 9, 2019', to: 'July 20, 2019', info: 'wtv'},
{from: 'October 9, 2019', to: 'November 20, 2019', info: 'wtv'}
],
'User Documentation': [
{from: 'August 10, 2019', to: 'September 15, 2019', info: 'wtv'}
]
}
},
{
name: 'Development Team',
timelines: {
'Software Development': [
{from: 'July 9, 2019', to: 'October 20, 2019', info: 'wtv'}
],
'Testing': [
{from: 'October 25, 2019', to: 'November 15, 2019', info: 'wtv'}
],
'User Documentation': [
{from: 'August 1, 2019', to: 'August 15, 2019', info: 'wtv'}
]
}
},
{
name: 'Test Team A',
timelines: {
'Testing': [
{from: 'August 1, 2019', to: 'August 15, 2019', info: 'wtv'}
]
}
},
{
name: 'Test Team B',
timelines: {
'Testing': [
{from: 'August 15, 2019', to: 'August 30, 2019', info: 'wtv'}
]
}
},
{
name: 'Sales Team',
timelines: {
'Pitching': [
{from: 'July 9, 2019', to: 'October 20, 2019', info: 'wtv'}
],
'Sales': [
{from: 'October 25, 2019', to: 'November 15, 2019', info: 'wtv'}
]
}
},
{
name: 'Planning Team',
timelines: {
'Planning': [
{from: 'May 9, 2019', to: 'May 30, 2019', info: 'wtv'}
]
}
}
];
<ngx-gantt-chart [width]="1100"
[data]="ganttChartData" colorScheme="cool"></ngx-gantt-chart>