/ Gantt / Getting Started
Search results

Getting started with Vue Gantt component

20 Mar 2023 / 23 minutes to read

This section explains the steps required to create a Gantt and demonstrates the basic usage of the Gantt component.

Prerequisites

System requirements for Syncfusion Vue UI components

Dependencies

Following is the list of dependencies to use the Gantt with all features:

Copied to clipboard
|-- @syncfusion/ej2-gantt
    |-- @syncfusion/ej2-base
    |-- @syncfusion/ej2-buttons
    |-- @syncfusion/ej2-calendars
    |-- @syncfusion/ej2-data
    |-- @syncfusion/ej2-dropdowns
    |-- @syncfusion/ej2-grids
    |-- @syncfusion/ej2-inputs
    |-- @syncfusion/ej2-layouts
    |-- @syncfusion/ej2-lists
    |-- @syncfusion/ej2-navigations
    |-- @syncfusion/ej2-popups
    |-- @syncfusion/ej2-richtexteditor
    |-- @syncfusion/ej2-treegrid

Installation and configuration

You can use Vue CLI to setup your Vue applications. To install Vue CLI use the following command:

Copied to clipboard
npm install -g @vue/cli

npm install -g @vue/cli-init

Start a new project using following Vue CLI command:

Copied to clipboard
vue init webpack-simple quickstart

cd quickstart

npm install

Adding Syncfusion packages

All the available Essential JS 2 packages are published in npmjs.com registry. You can choose the component that you want to install. For this application, we are going to use Gantt component.

To install Gantt component, use the following command:

Copied to clipboard
npm install @syncfusion/ej2-vue-gantt –save

Registering Vue component

For Registering Vue Component two ways are available. They are as follows:

  • Vue.use()
  • Vue.component()

Using Vue.use()

Import the Component Plugin from the EJ2 Vue Package and register the same using Vue.use() with Component Plugin as its argument.

Refer the following code snippet:

Copied to clipboard
import { GanttPlugin } from '@syncfusion/ej2-vue-gantt';

Vue.use(GanttPlugin);

By Registering Component Plugin in Vue, all child directives are also globally registered.

Using Vue.component()

Import the Component and Component Plugin from EJ2 Vue Package, register the same using the Vue.component() with name of Component from ComponentPlugin and the EJ2 Vue Component as its arguments.

Refer the following code snippet:

Copied to clipboard
import { GanttComponent, GanttPlugin } from '@syncfusion/ej2-vue-gantt';

Vue.component(GanttPlugin.name, GanttComponent);

Note: By using Vue.component(), only the EJ2 Vue Component is registered. Child directives needs to be registered separately.

Initialize Gantt component

Add the EJ2 Vue Gantt using <ejs-gantt> to the <template> section of the App.vue file in src directory, the content attribute of the Gantt component is provided as name in data option in the <script> section.

Copied to clipboard
<template>
<div id="app">
<ejs-gantt></ejs-gantt>
  </div>
</template>
<script>
import Vue from 'vue';
import { GanttPlugin } from '@syncfusion/ej2-vue-gantt';

Vue.use(GanttPlugin);
export default Vue.extend ({});
</script>

Adding CSS reference

Add Gantt component’s styles as following code under <style> section of the App.vue file.

Copied to clipboard
<style>
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';  
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';  
@import '../node_modules/@syncfusion/ej2-calendars/styles/material.css';  
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';  
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
@import '../node_modules/@syncfusion/ej2-lists/styles/material.css';
@import '../node_modules/@syncfusion/ej2-layouts/styles/material.css';
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
@import '../node_modules/@syncfusion/ej2-grids/styles/material.css';
@import '../node_modules/@syncfusion/ej2-richtexteditor/styles/material.css';
@import '../node_modules/@syncfusion/ej2-treegrid/styles/material.css';
@import "../node_modules/@syncfusion/ej2-vue-gantt/styles/material.css";
</style>

Note: Use above CSS styles in <style> </style> tag for rendering all code snippets.

Module injection

The Gantt components was segregated into individual feature-wise modules. To use its feature, you need to inject its feature service in the AppModule. Find the relevant feature modules and descriptions as follows:

  • Edit : Inject this module to use the editing feature.
  • Filter : Inject this module to use the filtering feature.
  • Sort : Inject this module to use the sorting feature.
  • Selection : Inject this module to use the selection feature.
  • Toolbar : Inject this module to use the toolbar items.
  • DayMarkers : Inject this module to highlight the days.

Now, import the above-mentioned modules from the Gantt package and inject them using providelike following code:

Copied to clipboard
import Vue from "vue";
import { GanttPlugin , Edit, Filter, Sort } from "@syncfusion/ej2-vue-gantt";

Vue.use(GanttPlugin);

export default {
  provide: {
gantt: [ Edit, Filter, Sort ]
  }
};

Binding Gantt with data

Bind data with the Gantt component by using the dataSource property. It accepts an array of JavaScript object or the DataManager instance.

Copied to clipboard
<template>
<div>
   <ejs-gantt ref='gantt' :dataSource="data"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
 data: function() {
 return{
       data: [
       {
           TaskID: 1,
           TaskName: 'Project Initiation',
           StartDate: new Date('04/02/2019'),
           EndDate: new Date('04/21/2019'),
           subtasks: [
               {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
               { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
               { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
           ]
       },
       {
           TaskID: 5,
           TaskName: 'Project Estimation',
           StartDate: new Date('04/02/2019'),
           EndDate: new Date('04/21/2019'),
           subtasks: [
               { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
               { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
               { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
           ]
       },
   ],
   };
 },
};
</script>

Mapping task fields

The data source fields that are required to render the tasks are mapped to the Gantt control using the taskFields property.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' :dataSource="data" id="GanttContainer" :taskFields = "taskFields" :height = "height"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
                { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
            ]
        },
    ],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            child: 'subtasks'
        },
    };
  },
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Note : While creating a Syncfusion Vue components using Direct Scripts, camelCased property (dataSource) names need to specify in the kebab-cased (data-source) equivalents.

Defining timeline

The Gantt has an option to define timeline using timelineSettings property with various options. Using this property we can customize the Gantt timeline.

Copied to clipboard
<template>
 <div>
    <ejs-gantt id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" :timelineSettings="timelineSettings"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
                { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
            ]
        },
    ],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            dependency: 'Predecessor',
            child: 'subtasks'
        },
         timelineSettings: {
            topTier: {
                format: 'MMM dd, yyyy',
                unit: 'Week',
            },
            bottomTier: {
                unit: 'Day',
            },
        },
  };
  },  
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Enabling toolbar

The toolbar property is used to add the toolbar items like Add, Remove, Edit, Update, Delete, Expand All,Collapse All in Gantt.

To use toolbar, inject the Toolbar module in the provide section.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" :toolbar="toolbar" :editSettings= "editSettings"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin, Edit, Selection, Toolbar, DayMarkers  } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
                { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
            ]
        },
    ],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            dependency: 'Predecessor',
            child: 'subtasks'
        },
        toolbar: ['Add', 'Edit', 'Update', 'Delete', 'Cancel', 'ExpandAll', 'CollapseAll'],
         editSettings: {
            allowAdding: true,
            allowEditing: true,
            allowDeleting: true,
            allowTaskbarEditing: true,
            showDeleteConfirmDialog: true
        },
  };
  },
  provide: {
  gantt: [ Edit, Selection, Toolbar, DayMarkers ]
  }
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Enabling editing

The editing feature enables you to edit the tasks in Gantt component. It can be enabled by using the editSettings.allowEditing and editSettings.allowTaskbarEditing properties.

To use Editing, inject the Edit module in the provide section.

The following editing options are available to update the tasks in Gantt:

  • Cell
  • Dialog
  • Taskbar
  • Connector line

Cell editing

Modify the task details through cell editing by setting the edit mode property as Auto. To enable edit support Edit module should be injected in Gantt. If Edit module is not injected, you cannot do any editing action in Gantt.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" :toolbar="toolbar" :columns = "columns" :editSettings= "editSettings"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin, Edit  } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
                { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
            ]
        },
    ],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            child: 'subtasks'
        },
        columns: [
            { field: 'TaskID', headerText: 'Task ID', textAlign: 'Left', width: '100' },
            { field: 'TaskName', headerText: 'Task Name', width: '250' },
            { field: 'StartDate', headerText: 'Start Date', width: '150' },
            { field: 'Duration', headerText: 'Duration', width: '150' },
            { field: 'Progress', headerText: 'Progress', width: '150' },
        ],
        toolbar: ['Edit'],
        editSettings: {
            allowEditing: true,
            mode:"Auto"
        },
  };
  },
  provide: {
  gantt: [ Edit ]
  }
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Note: When the edit mode is set to Auto, you can change the cells to editable mode by double-clicking anywhere at the TreeGrid and edit the task details in the edit dialog by double-clicking anywhere at the chart.

Dialog editing

Modify the task details through dialog by setting edit mode property as Dialog.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" :toolbar="toolbar" :columns = "columns" :editSettings= "editSettings"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin, Edit  } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
                { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
            ]
        },
    ],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            child: 'subtasks'
        },
        columns: [
            { field: 'TaskID', headerText: 'Task ID', textAlign: 'Left', width: '100' },
            { field: 'TaskName', headerText: 'Task Name', width: '250' },
            { field: 'StartDate', headerText: 'Start Date', width: '150' },
            { field: 'Duration', headerText: 'Duration', width: '150' },
            { field: 'Progress', headerText: 'Progress', width: '150' },
        ],
        toolbar: ['Edit'],
         editSettings: {
             allowEditing: true,
             mode:"Dialog"
        },
  };
  },
  provide: {
  gantt: [ Edit ]
  }
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Note: In dialog editing mode, the edit dialog will appear while performing double click action in both TreeGrid and chart sides.

Taskbar editing

Modify the task details through user interaction such as resizing and dragging the taskbar by enabling the allowTaskbarEditing property.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" :toolbar="toolbar" :columns = "columns" :editSettings= "editSettings"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin, Edit  } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
                { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
            ]
        },
    ],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            child: 'subtasks'
        },
        columns: [
            { field: 'TaskID', headerText: 'Task ID', textAlign: 'Left', width: '100' },
            { field: 'TaskName', headerText: 'Task Name', width: '250' },
            { field: 'StartDate', headerText: 'Start Date', width: '150' },
            { field: 'Duration', headerText: 'Duration', width: '150' },
            { field: 'Progress', headerText: 'Progress', width: '150' },
        ],
        toolbar: ['Edit'],
         editSettings: {
            allowTaskbarEditing:true
        },
  };
  },
  provide: {
  gantt: [ Edit ]
  }
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Dependency editing

Modify the task dependencies using mouse interactions by enabling the allowTaskbarEditing property along with mapping the task dependency data source field to the dependency property.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" :toolbar="toolbar" :columns = "columns" :editSettings= "editSettings"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin, Edit } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
    {
        TaskID: 1,
        TaskName: 'Project Initiation',
        StartDate: new Date('04/02/2019'),
        EndDate: new Date('04/21/2019'),
        subtasks: [
            { TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0, Progress: 50 },
            { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
            { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4,Predecessor:"2FS", Progress: 50 },
        ]
    },
    {
        TaskID: 5,
        TaskName: 'Project Estimation',
        StartDate: new Date('04/02/2019'),
        EndDate: new Date('04/21/2019'),
        subtasks: [
            { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
            { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
            { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 0,Predecessor:"6SS", Progress: 50 }
        ]
    },
],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            dependency: 'Predecessor',
            child: 'subtasks'
        },
        columns: [
            { field: 'TaskID', headerText: 'Task ID', textAlign: 'Left', width: '100' },
            { field: 'TaskName', headerText: 'Task Name', width: '250' },
            { field: 'StartDate', headerText: 'Start Date', width: '150' },
            { field: 'Duration', headerText: 'Duration', width: '150' },
            { field: 'Progress', headerText: 'Progress', width: '150' },
        ],
        toolbar: ['Edit'],
         editSettings: {
            allowTaskbarEditing:true
        },
  };
  },
  provide: {
  gantt: [ Edit ]
  }
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Enabling predecessors or task relationships

Predecessor or task dependency in the Gantt component is used to depict the relationship between the tasks.

Start to Start (SS) : You cannot start a task until the dependent task starts. Start to Finish (SF) : You cannot finish a task until the dependent task finishes. Finish to Start (FS) : You cannot start a task until the dependent task completes. Finish to Finish (FF) : You cannot finish a task until the dependent task completes.

You can show the relationship in tasks, by using the dependency property as shown in the following code example:

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" highlightWeekends='true'></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
    {
        TaskID: 1,
        TaskName: 'Project Initiation',
        StartDate: new Date('04/02/2019'),
        EndDate: new Date('04/21/2019'),
        subtasks: [
            { TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0, Progress: 50 },
            { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
            { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4,Predecessor:"2FS", Progress: 50 },
        ]
    },
    {
        TaskID: 5,
        TaskName: 'Project Estimation',
        StartDate: new Date('04/02/2019'),
        EndDate: new Date('04/21/2019'),
        subtasks: [
            { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
            { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
            { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 0,Predecessor:"6SS", Progress: 50 }
        ]
    },
],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            dependency: 'Predecessor',
            child: 'subtasks'
        },
  };
  },  
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Assigning resources

You can display and assign the resource for each task in the Gantt control. Create a collection of JSON object, which contains id, name, unit and group of the resources and assign it to the resources property. Map these fields to the Gantt control using the resourceFields property.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields= "taskFields" :height= "height" :treeColumnIndex= "1" :resourceFields= "resourceFields" :resources= "resources" :highlightWeekends= "true" :labelSettings= "labelSettings"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
            {
                TaskID: 1,
                TaskName: 'Project initiation',
                StartDate: new Date('04/02/2019'),
                EndDate: new Date('04/21/2019'),
                subtasks: [
                    {TaskID: 2, TaskName: 'Identify site location', StartDate: new Date('04/02/2019'), Duration: 0,Progress: 50, resources: [1]},
                    {TaskID: 3, TaskName: 'Perform soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',Progress: 50, resources: [2, 3, 5]},
                    {TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 50 },
                ]
            },
            {
                TaskID: 5,
                TaskName: 'Project estimation',
                StartDate: new Date('04/02/2019'),
                EndDate: new Date('04/21/2019'),
                subtasks: [
                    {TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),Duration: 3, Predecessor: '4', Progress: 50, resources: [4]},
                    {TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),Duration: 3, Predecessor: '6', resources: [4, 8],Progress: 50},
                    {TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),Duration: 0, Predecessor: '7', resources: [12, 5]}
                ]
            }
        ],
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            dependency: 'Predecessor',
            child: 'subtasks',
            resourceInfo: 'resources'
        },
        height: '450px',

        resourceFields: {
            id: 'resourceId',
            name: 'resourceName',
        },

        resources: [
            { resourceId: 1, resourceName: 'Martin Tamer' },
            { resourceId: 2, resourceName: 'Rose Fuller' },
            { resourceId: 3, resourceName: 'Margaret Buchanan' },
            { resourceId: 4, resourceName: 'Fuller King' },
            { resourceId: 5, resourceName: 'Davolio Fuller' },
            { resourceId: 6, resourceName: 'Van Jack' },
            { resourceId: 7, resourceName: 'Fuller Buchanan' },
            { resourceId: 8, resourceName: 'Jack Davolio' },
            { resourceId: 9, resourceName: 'Tamer Vinet' },
            { resourceId: 10, resourceName: 'Vinet Fuller' },
            { resourceId: 11, resourceName: 'Bergs Anton' },
            { resourceId: 12, resourceName: 'Construction Supervisor' }
        ],
        labelSettings: {
            leftLabel: 'TaskName',
            rightLabel: 'resources'
        },
  };
  }
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Enable filtering

The filtering feature enables you to view reduced amount of records based on filter criteria. Gantt provides support for menu filtering support for each columns. It can be enabled by setting the allowFiltering property to true along with injecting the Filter module module as shown in the following code example. Filtering feature can also be customized using the filterSettings property.

To use Filtering, inject the Filter module in the provide section.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" :columns="columns" :toolbar="toolbar" :allowFiltering= "true" :timelineSettings="timelineSettings" :splitterSettings= "splitterSettings" :labelSettings= "labelSettings" :projectStartDate="projectStartDate" :projectEndDate= "projectEndDate"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin, Filter, Toolbar } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
                { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
            ]
        },
    ],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            dependency: 'Predecessor',
            child: 'subtasks',
        },
        columns: [
            { field: 'TaskName', headerText: 'Task Name', width: '250' , clipMode: 'EllipsisWithTooltip' },
            { field: 'StartDate', headerText: 'Start Date' },
            { field: 'Duration', headerText: 'Duration' },
            { field: 'EndDate', headerText: 'End Date' },
            { field: 'Predecessor', headerText: 'Predecessor' }
        ],
        toolbar: ['Search'],
        timelineSettings: {
            timelineUnitSize: 60,
            topTier: {
                format: 'MMM dd, yyyy',
                unit: 'Day',
            },
            bottomTier: {
                unit: 'Hour',
                format: 'h.mm a'
            },
        },
        splitterSettings: {
            columnIndex: 3
            },
        labelSettings: {
            rightLabel: 'TaskName',
        },
        projectStartDate: new Date('07/16/1969 01:00:00 AM'),
        projectEndDate: new Date('07/25/1969')  
  };
  },
  provide: {
  gantt: [ Filter, Toolbar ]
  }
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Enable sorting

The sorting feature enables you to order the records. It can be enabled by setting the allowSorting property to true. Provide the Sort module as follows. If Sort module is not provided, you cannot sort when a header is clicked. The sorting feature can be customized using the sortSettings(../api/gantt/sortSettings/) property.

To use Sorting, inject the Sort module in the provide section.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" :columns="columns" :splitterSettings= "splitterSettings" :allowSorting= 'true'></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin, Sort } from "@syncfusion/ej2-vue-gantt";
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
                { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
            ]
        },
    ],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            duration: 'Duration',
            progress: 'Progress',
            child: 'subtasks'
        },
        splitterSettings: {
            columnIndex: 3
            },
       columns: [
            { field: 'TaskID', headerText: 'Task ID', textAlign: 'Left', width: '100' },
            { field: 'TaskName', headerText: 'Task Name', width: '250' },
            { field: 'StartDate', headerText: 'Start Date', width: '150' },
            { field: 'Duration', headerText: 'Duration', width: '150' },
            { field: 'Progress', headerText: 'Progress', width: '150' },
        ],
  };
  },
  provide: {
  gantt: [ Sort ]
  }
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Defining eventmarkers

The eventMarkers property in Gantt component is used to highlight the important event in Gantt chart part. By using this feature, you can add the lines and label to highlight important days in your project.

To highlight the days, inject the DayMarkers module in the provide section.

Copied to clipboard
<template>
 <div>
    <ejs-gantt ref='gantt' id="GanttContainer" :dataSource="data" :taskFields = "taskFields" :height = "height" :eventMarkers="eventMarkers"></ejs-gantt>
</div>
</template>
<script>
import Vue from "vue";
import { GanttPlugin, DayMarkers} from "@syncfusion/ej2-vue-gantt";
import { projectNewData } from './data-source.js';
Vue.use(GanttPlugin);
export default {
  data: function() {
  return{
        data: projectNewData,
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            dependency: 'Predecessor',
            child: 'subtasks'
        },
         eventMarkers: [
            {
                day: new Date('04/09/2019'),
                label: 'Research phase'
            }, {
                day: new Date('04/30/2019'),
                label: 'Design phase'
            }, {
                day: new Date('05/23/2019'),
                label: 'Production phase'
            }, {
                day: new Date('06/20/2019'),
                label: 'Sales and marketing phase'
            }
        ]
  };
  },
  provide: {
  gantt: [DayMarkers]
  }
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});

Run the application

Now run the npm run dev command in the console, it will build your application and open in the web browser.

The following example shows a basic Gantt:

Copied to clipboard
<template>
<div>
<ejs-gantt id="gantt" :dataSource="data" :taskFields = "taskFields" :height="height"></ejs-gantt>
</div>
</template>

<script>
import Vue from 'vue';
import { GanttPlugin } from '@syncfusion/ej2-vue-gantt';

Vue.use(GanttPlugin);

export default {
  data: function() {
  return{
        data: [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {  TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
                { TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50  },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 4, Progress: 50 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 },
                { TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'), Duration: 3, Progress: 50 }
            ]
        },
    ],
        height: '450px',
        taskFields: {
            id: 'TaskID',
            name: 'TaskName',
            startDate: 'StartDate',
            endDate: 'EndDate',
            duration: 'Duration',
            progress: 'Progress',
            dependency: 'Predecessor',
            child: 'subtasks'
        },
    };
  },
};
</script>
Copied to clipboard
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.projectNewData = [
        {
            TaskID: 1,
            TaskName: 'Product Concept',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Defining the product and its usage', StartDate: new Date('04/02/2019'), Duration: 3, Progress: 30 },
                { TaskID: 3, TaskName: 'Defining target audience', StartDate: new Date('04/02/2019'), Duration: 3 },
                {
                    TaskID: 4, TaskName: 'Prepare product sketch and notes', StartDate: new Date('04/02/2019'), Duration: 2,
                    Predecessor: '2', Progress: 30
                },
            ]
        },
        {
            TaskID: 5, TaskName: 'Concept Approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3,4',
            Indicators: [
                {
                    'date': '04/10/2019',
                    'name': '#briefing',
                    'title': 'Product concept breifing',
                }
            ]
        },
        {
            TaskID: 6,
            TaskName: 'Market Research',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 7,
                    TaskName: 'Demand Analysis',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 8, TaskName: 'Customer strength', StartDate: new Date('04/04/2019'), Duration: 4,
                            Predecessor: '5', Progress: 30
                        },
                        { TaskID: 9, TaskName: 'Market opportunity analysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '5' }
                    ]
                },
                {
                    TaskID: 10, TaskName: 'Competitor Analysis', StartDate: new Date('04/04/2019'), Duration: 4,
                    Predecessor: '7, 8', Progress: 30
                },
                { TaskID: 11, TaskName: 'Product strength analsysis', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '9' },
                {
                    TaskID: 12, TaskName: 'Research complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '10',
                    Indicators: [
                        {
                            'date': '04/20/2019',
                            'name': '#meeting',
                            'title': '1st board of directors meeting',
                        }
                    ]
                }
            ]
        },
        {
            TaskID: 13,
            TaskName: 'Product Design and Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 14, TaskName: 'Functionality design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '12'
                },
                { TaskID: 15, TaskName: 'Quality design', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '12' },
                { TaskID: 16, TaskName: 'Define Reliability', StartDate: new Date('04/04/2019'), Duration: 2, Progress: 30, Predecessor: '15' },
                { TaskID: 17, TaskName: 'Identifying raw materials', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '15' },
                {
                    TaskID: 18,
                    TaskName: 'Define cost plan',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 19, TaskName: 'Manufacturing cost', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '17'
                        },
                        { TaskID: 20, TaskName: 'Selling cost', StartDate: new Date('04/04/2019'), Duration: 2, Predecessor: '17' }
                    ]
                },
                {
                    TaskID: 21,
                    TaskName: 'Development of the final design',
                    StartDate: new Date('04/04/2019'),
                    EndDate: new Date('04/21/2019'),
                    subtasks: [
                        {
                            TaskID: 22, TaskName: 'Defining dimensions and package volume', StartDate: new Date('04/04/2019'),
                            Duration: 2, Progress: 30, Predecessor: '19,20'
                        },
                        {
                            TaskID: 23, TaskName: 'Develop design to meet industry standards', StartDate: new Date('04/04/2019'),
                            Duration: 2, Predecessor: '22'
                        },
                        { TaskID: 24, TaskName: 'Include all the details', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '23' }
                    ]
                },
                {
                    TaskID: 25, TaskName: 'CAD Computer-aided design', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '24'
                },
                { TaskID: 26, TaskName: 'CAM Computer-aided manufacturing', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '25' },
                {
                    TaskID: 27, TaskName: 'Design complete', StartDate: new Date('04/04/2019'), Duration: 0, Predecessor: '26',
                    Indicators: [
                        {
                            'date': '05/18/2019',
                            'name': '#meeting',
                            'title': '2nd board of directors meeting',
                        }
                    ]
                }
            ]
        },
        { TaskID: 28, TaskName: 'Prototype Testing', StartDate: new Date('04/04/2019'), Duration: 4, Progress: 30, Predecessor: '27' },
        { TaskID: 29, TaskName: 'Include feedback', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '28ss' },
        { TaskID: 30, TaskName: 'Manufacturing', StartDate: new Date('04/04/2019'), Duration: 5, Progress: 30, Predecessor: '28,29' },
        { TaskID: 31, TaskName: 'Assembling materials to finsihed goods', StartDate: new Date('04/04/2019'), Duration: 5, Predecessor: '30' },
        {
            TaskID: 32,
            TaskName: 'Feedback and Testing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Internal testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 45, Predecessor: '31'
                },
                {
                    TaskID: 34, TaskName: 'Customer testing and feedback', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 50, Predecessor: '33'
                }
            ]
        },
        {
            TaskID: 35,
            TaskName: 'Final Product Development',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 36, TaskName: 'Important improvements', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 37, TaskName: 'Address any unforeseen issues', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '36ss'
                }
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Final Product',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                { TaskID: 39, TaskName: 'Branding product', StartDate: new Date('04/04/2019'), Duration: 4, Predecessor: '37' },
                {
                    TaskID: 40, TaskName: 'Marketing and presales', StartDate: new Date('04/04/2019'),
                    Duration: 4, Progress: 30, Predecessor: '39'
                }
            ]
        }
    ];
    exports.editingResources = [
        { resourceId: 1, resourceName: 'Martin Tamer' },
        { resourceId: 2, resourceName: 'Rose Fuller' },
        { resourceId: 3, resourceName: 'Margaret Buchanan' },
        { resourceId: 4, resourceName: 'Fuller King' },
        { resourceId: 5, resourceName: 'Davolio Fuller' },
        { resourceId: 6, resourceName: 'Van Jack' },
        { resourceId: 7, resourceName: 'Fuller Buchanan' },
        { resourceId: 8, resourceName: 'Jack Davolio' },
        { resourceId: 9, resourceName: 'Tamer Vinet' },
        { resourceId: 10, resourceName: 'Vinet Fuller' },
        { resourceId: 11, resourceName: 'Bergs Anton' },
        { resourceId: 12, resourceName: 'Construction Supervisor' }
    ];
    exports.editingData = [
        {
            TaskID: 1,
            TaskName: 'Project Initiation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Identify Site location', StartDate: new Date('04/02/2019'), Duration: 0,
                    Progress: 30, resources: [1], info: 'Measure the total property area alloted for construction'
                },
                {
                    TaskID: 3, TaskName: 'Perform Soil test', StartDate: new Date('04/02/2019'), Duration: 4, Predecessor: '2',
                    resources: [2, 3, 5], info: 'Obtain an engineered soil test of lot where construction is planned.' +
                        'From an engineer or company specializing in soil testing'
                },
                { TaskID: 4, TaskName: 'Soil test approval', StartDate: new Date('04/02/2019'), Duration: 0, Predecessor: '3', Progress: 30 },
            ]
        },
        {
            TaskID: 5,
            TaskName: 'Project Estimation',
            StartDate: new Date('04/02/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 6, TaskName: 'Develop floor plan for estimation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '4', Progress: 30, resources: 4,
                    info: 'Develop floor plans and obtain a materials list for estimations'
                },
                {
                    TaskID: 7, TaskName: 'List materials', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '6', resources: [4, 8], info: ''
                },
                {
                    TaskID: 8, TaskName: 'Estimation approval', StartDate: new Date('04/04/2019'),
                    Duration: 0, Predecessor: '7', resources: [12, 5], info: ''
                }
            ]
        },
        {
            TaskID: 9, TaskName: 'Sign Contract', StartDate: new Date('04/04/2019'), Duration: 1,
            Predecessor: '8', Progress: 30, resources: [12],
            info: 'If required obtain approval from HOA (homeowners association) or ARC (architectural review committee)'
        },
        {
            TaskID: 10,
            TaskName: 'Project Approval and kick off',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            Duration: 0,
            Predecessor: '9'
        },
        {
            TaskID: 11,
            TaskName: 'Site Work',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 12, TaskName: 'Clear the building site', StartDate: new Date('04/04/2019'),
                    Duration: 2, Progress: 30, Predecessor: '9', resources: [6, 7],
                    info: 'Clear the building site (demolition of existing home if necessary)'
                },
                {
                    TaskID: 13, TaskName: 'Install temporary power service', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '12', resources: [6, 7], info: ''
                },
            ]
        },
        {
            TaskID: 14,
            TaskName: 'Foundation',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 15, TaskName: 'Excavate for foundations', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '13', resources: [2, 8],
                    info: 'Excavate the foundation and dig footers (Scope of work is dependent of foundation designed by engineer)'
                },
                {
                    TaskID: 16, TaskName: 'Dig footer', StartDate: new Date('04/04/2019'),
                    Duration: 2, Predecessor: '15FF', resources: [8], info: ''
                },
                {
                    TaskID: 17, TaskName: 'Install plumbing grounds', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '15', resources: [9], info: ''
                },
                {
                    TaskID: 18, TaskName: 'Pour a foundation and footer with concrete', StartDate: new Date('04/04/2019'),
                    Duration: 1, Predecessor: '17', resources: [8, 9, 10], info: ''
                },
                {
                    TaskID: 19, TaskName: 'Cure basement walls', StartDate: new Date('04/04/2019'), Duration: 4,
                    Progress: 30, Predecessor: '18', resources: [10], info: ''
                },
            ]
        },
        {
            TaskID: 20,
            TaskName: 'Framing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 21, TaskName: 'Add load-bearing structure', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '19', resources: [4, 5],
                    info: 'Build the main load-bearing structure out of thick pieces of wood and' +
                        'possibly metal I-beams for large spans with few supports'
                },
                {
                    TaskID: 22, TaskName: 'Install floor joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '21', resources: [2, 3], info: 'Add floor and ceiling joists and install subfloor panels'
                },
                {
                    TaskID: 23, TaskName: 'Add ceiling joists', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '22SS', resources: [5], info: ''
                },
                {
                    TaskID: 24, TaskName: 'Install subfloor panels', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '23', resources: [8, 9]
                },
                {
                    TaskID: 25, TaskName: 'Frame floor walls', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '24', resources: [10], info: ''
                },
                {
                    TaskID: 26, TaskName: 'Frame floor decking', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '25SS', resources: [4, 8], info: ''
                },
            ]
        },
        {
            TaskID: 27,
            TaskName: 'Exterior finishing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 28, TaskName: 'Cover outer walls and roof in OSB', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '26', resources: [2, 8],
                    info: 'Cover outer walls and roof in OSB or plywood and a water-resistive barrier'
                },
                {
                    TaskID: 29, TaskName: 'Add water resistive barrier', StartDate: new Date('04/04/2019'),
                    Duration: 3, Predecessor: '28', resources: [1, 10],
                    info: 'Cover the walls with siding, typically vinyl, wood, or brick veneer but possibly stone or other materials'
                },
                {
                    TaskID: 30, TaskName: 'Install roof shingles', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '29', resources: [8, 9], info: 'Install roof shingles or other covering for flat roof'
                },
                { TaskID: 31, TaskName: 'Install windows', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '29', resources: 7 },
            ]
        },
        {
            TaskID: 32,
            TaskName: 'Utilities',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 33, TaskName: 'Install internal plumbing', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '26', resources: [1, 10]
                },
                {
                    TaskID: 34, TaskName: 'Install HVAC', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '33',
                    resources: [4, 9], info: 'Add internal plumbing, HVAC, electrical, and natural gas utilities'
                },
                {
                    TaskID: 35, TaskName: 'Electrical utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '34'
                },
                {
                    TaskID: 36, TaskName: 'Natural gas utilities', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '35', resources: 11
                },
                {
                    TaskID: 37, TaskName: 'Install bathroom fixtures', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '35', resources: [3, 7]
                },
            ],
            info: 'Building inspector visits if necessary to approve utilities and framing'
        },
        {
            TaskID: 38,
            TaskName: 'Interior finsihing',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Install insulation', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '37', resources: [1, 8], info: 'Frame interior walls with wooden 2×4s'
                },
                {
                    TaskID: 40, TaskName: 'Install  drywall panels', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '39', resources: 5,
                    info: 'Install insulation and interior drywall panels (cementboard for wet areas) and to complete walls and ceilings'
                },
                {
                    TaskID: 41, TaskName: 'Spackle', StartDate: new Date('04/04/2019'), Duration: 3,
                    Progress: 30, Predecessor: '40', resources: 10
                },
                {
                    TaskID: 42, TaskName: 'Apply primer', StartDate: new Date('04/04/2019'), Duration: 3,
                    Predecessor: '41', resources: [10, 11]
                },
                {
                    TaskID: 43, TaskName: 'Paint wall and ceilings', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '42', resources: [2, 9]
                },
                {
                    TaskID: 44, TaskName: 'Install modular kitchen', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '43', resources: [5, 7]
                },
            ]
        },
        {
            TaskID: 45,
            TaskName: 'Flooring',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 46, TaskName: 'Tile kitchen, bathroom and entry walls', StartDate: new Date('04/04/2019'),
                    Duration: 3, Progress: 30, Predecessor: '44', resources: [4, 9, 3],
                    info: 'Additional tiling on top of cementboard for wet areas, such as the bathroom and kitchen backsplash'
                },
                {
                    TaskID: 47, TaskName: 'Tile floor', StartDate: new Date('04/04/2019'), Duration: 3, Predecessor: '46SS',
                    resources: [2, 8], info: 'Installation of final floor covering, such as floor tile, carpet, or wood flooring'
                },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Final Acceptance',
            StartDate: new Date('04/04/2019'),
            EndDate: new Date('04/21/2019'),
            subtasks: [
                {
                    TaskID: 49, TaskName: 'Final inspection', StartDate: new Date('04/04/2019'), Duration: 2,
                    Progress: 30, Predecessor: '47', resources: 12, info: 'Ensure the contracted items'
                },
                {
                    TaskID: 50, TaskName: 'Cleanup for occupancy', StartDate: new Date('04/04/2019'), Duration: 2,
                    Predecessor: '49', resources: [1, 5], info: 'Installation of major appliances'
                },
                {
                    TaskID: 51, TaskName: 'Property Handover', StartDate: new Date('04/04/2019'), Duration: 0,
                    Predecessor: '50', info: 'Ending the contract'
                },
            ]
        },
    ];
    exports.remoteData = [
        {
            TaskID: 1,
            TaskName: 'Germination',
            StartDate: new Date('03/01/2019'),
            subtasks: [
                { TaskID: 2, TaskName: 'Dry seed (caryopsis)', StartDate: new Date('03/01/2019'), Duration: 0 },
                { TaskID: 3, TaskName: 'Seed imbibition complete', StartDate: new Date('03/01/2019'), Duration: 3, Predecessor: '2FS' },
                { TaskID: 4, TaskName: 'Radicle emerged from caryopsis', StartDate: new Date('03/04/2019'), Duration: 2, Predecessor: '3FS' },
                {
                    TaskID: 5, TaskName: 'Coleoptile emerged from caryopsis', StartDate: new Date('03/06/2019'),
                    Duration: 2, Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'Emergence: coleoptile penetrates soil surface (cracking stage)',
                    StartDate: new Date('03/08/2019'), Duration: 2, Predecessor: '5FS'
                },
            ]
        },
        {
            TaskID: 7,
            TaskName: 'Leaf development',
            StartDate: new Date('03/10/2019'),
            subtasks: [
                { TaskID: 8, TaskName: 'First leaf through coleoptile', StartDate: new Date('03/10/2019'), Duration: 1, Predecessor: '6FS' },
                { TaskID: 9, TaskName: 'First leaf unfolded', StartDate: new Date('03/11/2019'), Duration: 1, Predecessor: '8FS' },
                { TaskID: 10, TaskName: '3 leaves unfolded', StartDate: new Date('03/12/2019'), Duration: 2, Predecessor: '9FS' },
                { TaskID: 11, TaskName: '9 or more leaves unfolded', StartDate: new Date('03/14/2019'), Duration: 5, Predecessor: '10FS' },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Tillering',
            StartDate: new Date('03/18/2019'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Beginning of tillering: first tiller detectable',
                    StartDate: new Date('03/18/2019'), Duration: 0, Predecessor: '11FS'
                },
                { TaskID: 14, TaskName: '2 tillers detectable', StartDate: new Date('03/19/2019'), Duration: 3, Predecessor: '13FS' },
                { TaskID: 15, TaskName: '3 tillers detectable', StartDate: new Date('03/22/2019'), Duration: 3, Predecessor: '14FS' },
                {
                    TaskID: 16, TaskName: 'Maximum no. of tillers detectable', StartDate: new Date('03/25/2019'),
                    Duration: 6, Predecessor: '15FS'
                },
                { TaskID: 17, TaskName: 'End of tillering', StartDate: new Date('03/30/2019'), Duration: 0, Predecessor: '16FS' },
            ]
        },
        {
            TaskID: 18,
            TaskName: 'Stem elongation',
            StartDate: new Date('03/30/2019'),
            subtasks: [
                {
                    TaskID: 19,
                    TaskName: 'Beginning of stem elongation: pseudostem and tillers erect, first internode begins to elongate,' +
                        'top of inflorescence at least 1 cm above tillering node',
                    StartDate: new Date('03/30/2019'),
                    Duration: 0,
                    Predecessor: '17FS'
                },
                {
                    TaskID: 20, TaskName: 'First node at least 1 cm above tillering node', StartDate: new Date('03/31/2019'),
                    Duration: 1, Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Node 3 at least 2 cm above node 2', StartDate: new Date('04/01/2019'),
                    Duration: 2, Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Flag leaf just visible, still rolled', StartDate: new Date('04/03/2019'),
                    Duration: 4, Predecessor: '21FS'
                },
                {
                    TaskID: 23, TaskName: 'Flag leaf stage: flag leaf fully unrolled, ligule just visible', StartDate: new Date('04/07/2019'),
                    Duration: 2, Predecessor: '22FS'
                },
            ]
        },
        {
            TaskID: 24,
            TaskName: 'Booting',
            StartDate: new Date('04/09/2019'),
            subtasks: [
                {
                    TaskID: 25, TaskName: 'Early boot stage: flag leaf sheath extending', StartDate: new Date('04/09/2019'),
                    Duration: 2, Predecessor: '23FS'
                },
                {
                    TaskID: 26, TaskName: 'Mid boot stage: flag leaf sheath just visibly swollen', StartDate: new Date('04/11/2019'),
                    Duration: 2, Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'Late boot stage: flag leaf sheath swollen', StartDate: new Date('04/13/2019'),
                    Duration: 2, Predecessor: '26FS'
                },
                { TaskID: 28, TaskName: 'Flag leaf sheath opening', StartDate: new Date('04/15/2019'), Duration: 2, Predecessor: '27FS' },
                {
                    TaskID: 29, TaskName: 'First awns visible (in awned forms only)', StartDate: new Date('04/17/2019'),
                    Duration: 2, Predecessor: '28FS'
                },
            ]
        },
        {
            TaskID: 30,
            TaskName: 'Inflorescence emergence, heading',
            StartDate: new Date('04/18/2019'),
            subtasks: [
                {
                    TaskID: 31, TaskName: 'Beginning of heading: tip of inflorescence emerged from sheath, first spikelet just visible',
                    StartDate: new Date('04/18/2019'), Duration: 0, Predecessor: '29FS'
                },
                { TaskID: 32, TaskName: '20% of inflorescence emerged', StartDate: new Date('04/19/2019'), Duration: 3, Predecessor: '31FS' },
                { TaskID: 33, TaskName: '40% of inflorescence emerged', StartDate: new Date('04/22/2019'), Duration: 2, Predecessor: '32FS' },
                {
                    TaskID: 34, TaskName: 'Middle of heading: half of inflorescence emerged', StartDate: new Date('04/23/2019'),
                    Duration: 0, Predecessor: '33FS'
                },
                { TaskID: 35, TaskName: '60% of inflorescence emerged', StartDate: new Date('04/24/2019'), Duration: 2, Predecessor: '34FS' },
                { TaskID: 36, TaskName: '80% of inflorescence emerged', StartDate: new Date('04/26/2019'), Duration: 3, Predecessor: '35FS' },
                {
                    TaskID: 37, TaskName: 'End of heading: inflorescence fully emerged', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '36FS'
                },
            ]
        },
        {
            TaskID: 38,
            TaskName: 'Flowering, anthesis',
            StartDate: new Date('04/28/2019'),
            subtasks: [
                {
                    TaskID: 39, TaskName: 'Beginning of flowering: first anthers visible', StartDate: new Date('04/28/2019'),
                    Duration: 0, Predecessor: '37FS'
                },
                {
                    TaskID: 40, TaskName: 'Full flowering: 50% of anthers mature', StartDate: new Date('04/29/2019'),
                    Duration: 5, Predecessor: '39FS'
                },
                {
                    TaskID: 41, TaskName: 'spikelet have completed flowering', StartDate: new Date('05/04/2019'),
                    Duration: 5, Predecessor: '40FS'
                },
                { TaskID: 42, TaskName: 'End of flowering', StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '41FS' },
            ]
        },
        {
            TaskID: 43,
            TaskName: 'Development of fruit',
            StartDate: new Date('05/08/2019'),
            subtasks: [
                {
                    TaskID: 44, TaskName: 'Watery ripe: first grains have reached half their final size',
                    StartDate: new Date('05/08/2019'), Duration: 0, Predecessor: '42FS'
                },
                { TaskID: 45, TaskName: 'Early milk', StartDate: new Date('05/09/2019'), Duration: 3, Predecessor: '44FS' },
                {
                    TaskID: 46, TaskName: 'Medium milk: grain content milky, grains reached final size,still green',
                    StartDate: new Date('05/12/2019'), Duration: 3, Predecessor: '45FS'
                },
                { TaskID: 47, TaskName: 'Late milk', StartDate: new Date('05/15/2019'), Duration: 2, Predecessor: '46FS' },
            ]
        },
        {
            TaskID: 48,
            TaskName: 'Ripening',
            StartDate: new Date('05/17/2019'),
            subtasks: [
                { TaskID: 49, TaskName: 'Early dough', StartDate: new Date('05/17/2019'), Duration: 6, Predecessor: '47FS' },
                {
                    TaskID: 50, TaskName: 'Soft dough: grain content soft but dry. Fingernail impression not held',
                    StartDate: new Date('05/23/2019'), Duration: 2, Predecessor: '49FS'
                },
                {
                    TaskID: 51, TaskName: 'Hard dough: grain content solid. Fingernail impression held',
                    StartDate: new Date('05/25/2019'), Duration: 2, Predecessor: '50FS'
                },
                {
                    TaskID: 52, TaskName: 'Fully ripe: grain hard, difficult to divide with thumbnail',
                    StartDate: new Date('05/27/2019'), Duration: 2, Predecessor: '51FS'
                },
            ]
        },
        {
            TaskID: 53,
            TaskName: 'Senescence',
            StartDate: new Date('05/29/2019'),
            subtasks: [
                {
                    TaskID: 54, TaskName: 'Over-ripe: grain very hard, cannot be dented by thumbnail',
                    StartDate: new Date('05/29/2019'), Duration: 3, Predecessor: '52FS'
                },
                { TaskID: 55, TaskName: 'Grains loosening in day-time', StartDate: new Date('06/01/2019'), Duration: 1, Predecessor: '54FS' },
                { TaskID: 56, TaskName: 'Plant dead and collapsing', StartDate: new Date('06/02/2019'), Duration: 4, Predecessor: '55FS' },
                { TaskID: 57, TaskName: 'Harvested product', StartDate: new Date('06/06/2019'), Duration: 2, Predecessor: '56FS' },
            ]
        },
    ];
    exports.filteredData = [
        {
            TaskID: 1,
            TaskName: 'Launch and flight to lunar orbit',
            StartDate: new Date('07/16/1969'),
            subtasks: [
                {
                    TaskID: 2, TaskName: 'Apollo 11 blasts off from launch pad', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:32:00 AM'), Duration: 0,
                },
                {
                    TaskID: 3, TaskName: 'Entry to Earth’s orbit', StartDate: new Date('07/16/1969 03:32:00 AM'),
                    EndDate: new Date('07/16/1969 03:44:00 AM'), Predecessor: '2FS'
                },
                {
                    TaskID: 4, TaskName: 'Travelling in earth’s orbit', StartDate: new Date('07/16/1969 03:44:00 AM'),
                    EndDate: new Date('07/16/1969 04:22:13 AM'), Predecessor: '3FS'
                },
                {
                    TaskID: 5, TaskName: 'Trajectory change toward the Moon', StartDate: new Date('07/16/1969 04:22:13 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '4FS'
                },
                {
                    TaskID: 6, TaskName: 'extraction maneuver performed', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:52:00 AM'), Predecessor: '5FS'
                },
                {
                    TaskID: 7, TaskName: 'Travelling toward moon and entering into lunar orbit', StartDate: new Date('07/16/1969 04:52:00 AM'),
                    EndDate: new Date('07/16/1969 04:21:50 PM'), Predecessor: '6FS'
                },
                {
                    TaskID: 8, TaskName: 'Midcourse correction, sharpening the course and testing the engine',
                    StartDate: new Date('07/16/1969 11:22:00 PM'), EndDate: new Date('07/17/1969 05:21:50 AM')
                },
                {
                    TaskID: 9, TaskName: 'Reached half the distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 05:22:00 AM'), EndDate: new Date('07/17/1969 08:00:50 PM')
                },
                {
                    TaskID: 10, TaskName: 'Reached 3/4th distance spanning between earth and moon',
                    StartDate: new Date('07/17/1969 8:02:00 PM'), EndDate: new Date('07/18/1969 04:21:50 PM')
                },
                {
                    TaskID: 11, TaskName: 'Reached distance 45000 miles from moon',
                    StartDate: new Date('07/18/1969 11:22:00 PM'), EndDate: new Date('07/19/1969 05:21:50 PM')
                },
            ]
        },
        {
            TaskID: 12,
            TaskName: 'Lunar descent',
            StartDate: new Date('07/19/1969 05:21:50 PM'),
            subtasks: [
                {
                    TaskID: 13, TaskName: 'Lunar Orbiting (30 orbits)', StartDate: new Date('07/19/1969 05:21:50 PM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '11FS'
                },
                {
                    TaskID: 14, TaskName: 'Landing site identified', StartDate: new Date('07/20/1969 12:52:00 AM'),
                    EndDate: new Date('07/20/1969 12:52:00 AM'), Predecessor: '13FS'
                },
                {
                    TaskID: 15, TaskName: 'Eagle separated from Columbia.', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 05:44:00 PM')
                },
                {
                    TaskID: 16, TaskName: 'Eagle’s decent to Moon', StartDate: new Date('07/20/1969 05:44:00 PM'),
                    EndDate: new Date('07/20/1969 08:16:40 PM'), Predecessor: '15FS'
                }
            ]
        },
        {
            TaskID: 17,
            TaskName: 'Landing',
            StartDate: new Date('07/20/1969 08:17:40 PM'),
            subtasks: [
                {
                    TaskID: 18, TaskName: 'Eagle’s touch down', StartDate: new Date('07/20/1969 08:17:40 PM'),
                    EndDate: new Date('07/20/1969 08:17:40 PM')
                },
                {
                    TaskID: 19, TaskName: 'Radio communication and Performing post landing checklist',
                    StartDate: new Date('07/20/1969 08:17:40 PM'), EndDate: new Date('07/20/1969 11:43:00 PM'), Predecessor: '18FS'
                },
                {
                    TaskID: 20, TaskName: 'Preparations for EVA (Extra Vehicular Activity)',
                    StartDate: new Date('07/20/1969 11:43:00 PM'), EndDate: new Date('07/21/1969 02:39:33 AM'), Predecessor: '19FS'
                },
                {
                    TaskID: 21, TaskName: 'Hatch open and climbing down the moon', StartDate: new Date('07/21/1969 02:39:33 AM'),
                    EndDate: new Date('07/21/1969 02:56:15 AM'), Predecessor: '20FS'
                },
                {
                    TaskID: 22, TaskName: 'Armstrong stepped down on the moon', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM'), Predecessor: '21FS'
                },
            ]
        },
        {
            TaskID: 23,
            TaskName: 'Lunar surface operations',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 24, TaskName: 'Soil sample collections', StartDate: new Date('07/21/1969 02:56:15 AM'),
                    EndDate: new Date('07/21/1969 03:11:00 AM')
                },
                {
                    TaskID: 25, TaskName: 'Aldrin joined Armstrong', StartDate: new Date('07/21/1969 03:11:00 AM'),
                    EndDate: new Date('07/21/1969 03:41:00 AM'), Predecessor: '24FS'
                },
                {
                    TaskID: 26, TaskName: 'planted the Lunar Flag Assembly', StartDate: new Date('07/21/1969 03:41:00 AM'),
                    EndDate: new Date('07/21/1969 03:46:00 AM'), Predecessor: '25FS'
                },
                {
                    TaskID: 27, TaskName: 'President Richard Nixon’s telephone-radio transmission ',
                    StartDate: new Date('07/21/1969 03:48:00 AM'), EndDate: new Date('07/21/1969 03:51:00 AM')
                },
                {
                    TaskID: 28, TaskName: 'Collect rock samples, photos and other mission controls',
                    StartDate: new Date('07/21/1969 03:52:00 AM'), EndDate: new Date('07/21/1969 04:50:00 AM')
                },
            ]
        },
        {
            TaskID: 29,
            TaskName: 'Lunar ascent',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 30, TaskName: 'Climbing the eagle to ascent', StartDate: new Date('07/21/1969 04:51:00 AM'),
                    EndDate: new Date('07/21/1969 05:00:00 AM')
                },
                {
                    TaskID: 31, TaskName: 'Hatch closing', StartDate: new Date('07/21/1969 05:01:00 AM'),
                    EndDate: new Date('07/21/1969 05:01:00 AM'), Predecessor: '30FS'
                },
                {
                    TaskID: 32, TaskName: 'Final housekeeping', StartDate: new Date('07/21/1969 05:02:00 AM'),
                    EndDate: new Date('07/21/1969 08:00:00 AM')
                },
                {
                    TaskID: 33, TaskName: 'Resting of astronauts', StartDate: new Date('07/21/1969 08:00:00 AM'),
                    EndDate: new Date('07/21/1969 03:00:00 PM'), Predecessor: '32FS'
                },
                {
                    TaskID: 34, TaskName: 'Preparation for lift off and Ascent engine started', StartDate: new Date('07/21/1969 03:00:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '33FS'
                },
                {
                    TaskID: 35, TaskName: 'Eagle lifted off', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 05:54:00 PM'), Predecessor: '34FS'
                },
                {
                    TaskID: 36, TaskName: 'Eagle’s travel toward Columbia', StartDate: new Date('07/21/1969 05:54:00 PM'),
                    EndDate: new Date('07/21/1969 09:23:00 PM'), Predecessor: '35FS'
                },
            ]
        },
        {
            TaskID: 37,
            TaskName: 'Return',
            StartDate: new Date('07/21/1969 09:24:00 PM'),
            subtasks: [
                {
                    TaskID: 38, TaskName: 'Eagle docked with Columbia', StartDate: new Date('07/21/1969 09:24:00 PM'),
                    EndDate: new Date('07/21/1969 09:35:00 PM')
                },
                {
                    TaskID: 39, TaskName: 'Eagle’s ascent stage jettisoned into lunar orbit', StartDate: new Date('07/21/1969 09:35:00 PM'),
                    EndDate: new Date('07/21/1969 11:41:00 PM'), Predecessor: '38FS'
                },
            ]
        },
        {
            TaskID: 40,
            TaskName: 'Decent toward earth  and Splashdown',
            StartDate: new Date('07/21/1969'),
            subtasks: [
                {
                    TaskID: 41, TaskName: 'Spacecraft reaches 1/4th distance spanning between moon and earth',
                    StartDate: new Date('07/21/1969 11:50:00 PM'), EndDate: new Date('07/22/1969 04:40:00 PM')
                },
                {
                    TaskID: 42, TaskName: 'Spacecraft travels to midway point of journey',
                    StartDate: new Date('07/22/1969 04:40:00 PM'), EndDate: new Date('07/23/1969 04:00:00 PM'), Predecessor: '41FS'
                },
                {
                    TaskID: 43, TaskName: 'Spacecraft travels to 3/4th point of journey', StartDate: new Date('07/23/1969 04:40:00 PM'),
                    EndDate: new Date('07/24/1969 10:00:00 AM'), Predecessor: '42FS'
                },
                {
                    TaskID: 44, TaskName: 'Crew prepares for splashdown', StartDate: new Date('07/24/1969 11:47:00 AM'),
                    EndDate: new Date('07/24/1969 04:20:00 PM')
                },
                {
                    TaskID: 45, TaskName: 'Command and service modules separates', StartDate: new Date('07/24/1969 04:20:00 PM'),
                    EndDate: new Date('07/24/1969 04:35:00 PM'), Predecessor: '44FS'
                },
                {
                    TaskID: 46, TaskName: 'Command module re-enters the Earth’s atmosphere', StartDate: new Date('07/24/1969 04:35:00 PM'),
                    EndDate: new Date('07/24/1969 04:50:00 PM'), Predecessor: '45FS'
                },
                {
                    TaskID: 47, TaskName: 'Spacecraft splashes near USS hornet', StartDate: new Date('07/24/1969 04:51:00 PM'),
                    EndDate: new Date('07/24/1969 04:51:00 PM')
                },
            ]
        }
    ];
    exports.customizedData = [
        {
            TaskId: 1, TaskName: '90th Academy awards kicks-off',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:00:00 PM'), Duration: 0,
        },
        {
            TaskId: 2, TaskName: 'Oscar moments', Predecessor: '1FS', column3: 'Jimmy kimmel hosts the show',
            StartDate: new Date('03/05/2015 06:00:00 PM'), EndDate: new Date('03/05/2015 06:15:00 PM')
        },
        {
            TaskId: 3, TaskName: 'Actor in a supporting role', Predecessor: '2FS',
            StartDate: new Date('03/05/2015 06:16:00 PM'), EndDate: new Date('03/05/2015 06:25:00 PM'),
            Winner: 'Sam Rockwell', Movie: 'Three Billboards Outside Ebbing, Missouri.'
        },
        {
            TaskId: 4, TaskName: 'Hair and makeup', Movie: 'Darkest Hour', Predecessor: '3FS',
            StartDate: new Date('03/05/2015 06:26:00 PM'), EndDate: new Date('03/05/2015 06:32:00 PM')
        },
        {
            TaskId: 5, TaskName: 'Costume design', Winner: 'Mark Bridges', Movie: 'Phantom Thread', Predecessor: '4FS',
            StartDate: new Date('03/05/2015 06:33:00 PM'), EndDate: new Date('03/05/2015 06:40:00 PM')
        },
        {
            TaskId: 6, TaskName: 'Documentary feature', Winner: 'Bryan Fogel', Movie: ' Icarus', Predecessor: '5FS',
            StartDate: new Date('03/05/2015 06:41:00 PM'), EndDate: new Date('03/05/2015 06:58:00 PM')
        },
        {
            TaskId: 7, TaskName: 'Best sound editing and sound mixing', Winner: 'Richard King and Alex Gibson', Movie: 'Dunkirk',
            StartDate: new Date('03/05/2015 06:59:00 PM'), EndDate: new Date('03/05/2015 07:10:00 PM'), Predecessor: '6FS'
        },
        {
            TaskId: 8, TaskName: 'Production design', Movie: 'The Shape of Water', Predecessor: '7FS',
            StartDate: new Date('03/05/2015 07:11:00 PM'), EndDate: new Date('03/05/2015 07:15:00 PM')
        },
        {
            TaskId: 9, TaskName: 'Oscar performance', column3: 'Second performance of the night is "Remember Me" from Coco',
            StartDate: new Date('03/05/2015 07:16:00 PM'), EndDate: new Date('03/05/2015 07:23:00 PM'), Predecessor: '8FS'
        },
        {
            TaskId: 10, TaskName: 'Best foreign language film goes', Movie: 'A Fantastic Woman', Predecessor: '9FS',
            StartDate: new Date('03/05/2015 07:24:00 PM'), EndDate: new Date('03/05/2015 07:29:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Best supporting actress', Winner: 'Allison Janney', Movie: 'I, Tonya',
            StartDate: new Date('03/05/2015 07:30:00 PM'), EndDate: new Date('03/05/2015 07:35:00 PM'), Predecessor: '10FS'
        },
        {
            TaskId: 12, TaskName: 'Best animated short', Winner: 'Kobe Bryant', Movie: 'Dear Basketball',
            StartDate: new Date('03/05/2015 07:36:00 PM'), EndDate: new Date('03/05/2015 07:45:00 PM'), Predecessor: '11FS'
        },
        {
            TaskId: 13, TaskName: 'Award for best animated feature.', Movie: 'Coco', Predecessor: '12FS',
            StartDate: new Date('03/05/2015 07:46:00 PM'), EndDate: new Date('03/05/2015 07:52:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Best visual effects.', Movie: 'Blade Runner 2049', Predecessor: '13FS',
            StartDate: new Date('03/05/2015 07:53:00 PM'), EndDate: new Date('03/05/2015 07:56:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Achievement in film editing', Movie: 'Dunkirk', Predecessor: '14FS',
            StartDate: new Date('03/05/2015 07:57:00 PM'), EndDate: new Date('03/05/2015 07:59:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Oscar moments', column3: 'Jimmy Kimmel surprises moviegoers along with celebrities',
            StartDate: new Date('03/05/2015 08:00:00 PM'), EndDate: new Date('03/05/2015 08:09:00 PM'), Predecessor: '15FS'
        },
        {
            TaskId: 17, TaskName: 'Best documentary short', Movie: 'Heaven is a Traffic Jam on the 405', Predecessor: '16FS',
            StartDate: new Date('03/05/2015 08:10:00 PM'), EndDate: new Date('03/05/2015 08:12:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Best live action short film', Movie: 'The Silent Child', Predecessor: '17FS',
            StartDate: new Date('03/05/2015 08:13:00 PM'), EndDate: new Date('03/05/2015 08:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Oscar performance',
            column3: 'Jimmy Kimmel surprCommon and Andra Day performs "Stand Up for Something" by "Marshall"',
            StartDate: new Date('03/05/2015 08:16:00 PM'), EndDate: new Date('03/05/2015 08:25:00 PM'), Predecessor: '18FS'
        },
        {
            TaskId: 20, TaskName: 'Oscar moments',
            column3: 'The Oscars are showcasing the #MeToo and #TimesUp movements with a montage and interviews with actors and filmmakers',
            StartDate: new Date('03/05/2015 08:26:00 PM'), EndDate: new Date('03/05/2015 08:29:00 PM'), Predecessor: '19FS'
        },
        {
            TaskId: 21, TaskName: 'Oscar for best adapted screenplay', Winner: 'James Ivory', Movie: 'Call Me By Your Name',
            StartDate: new Date('03/05/2015 08:30:00 PM'), EndDate: new Date('03/05/2015 08:35:00 PM'), Predecessor: '20FS'
        },
        {
            TaskId: 22, TaskName: 'Oscar for best original screenplay', Winner: 'Jordan Peele', Movie: 'Get Out',
            StartDate: new Date('03/05/2015 08:36:00 PM'), EndDate: new Date('03/05/2015 08:44:00 PM'), Predecessor: '21FS'
        },
        {
            TaskId: 23, TaskName: 'Oscar moments',
            column3: 'Who’s trending on Twitter at the Oscars? Actors Timothée Chalamet, Chadwick Boseman,' +
                'Tom Holland, Lupita Nyong’o and Adam Rippon.',
            StartDate: new Date('03/05/2015 08:40:00 PM'), EndDate: new Date('03/05/2015 08:45:00 PM'), Predecessor: '22FS'
        },
        {
            TaskId: 24, TaskName: 'Best cinematography', Winner: 'Roger A. Deakins', Movie: 'Blade Runner 2049',
            StartDate: new Date('03/05/2015 08:46:00 PM'), EndDate: new Date('03/05/2015 08:48:00 PM'), Predecessor: '23FS'
        },
        {
            TaskId: 25, TaskName: 'Oscar performance',
            column3: 'Keala Settle performs the nominated song "This is Me" from "The Greatest Showman".',
            StartDate: new Date('03/05/2015 08:49:00 PM'), EndDate: new Date('03/05/2015 08:54:00 PM'), Predecessor: '24FS'
        },
        {
            TaskId: 26, TaskName: 'Best original score', Movie: 'The Shape of Water', Predecessor: '25FS',
            StartDate: new Date('03/05/2015 08:55:00 PM'), EndDate: new Date('03/05/2015 08:59:00 PM')
        },
        {
            TaskId: 27, TaskName: 'Award for original song', Winner: 'Remember Me', Movie: 'Coco', Predecessor: '26FS',
            StartDate: new Date('03/05/2015 09:00:00 PM'), EndDate: new Date('03/05/2015 09:07:00 PM')
        },
        {
            TaskId: 28, TaskName: 'Oscar moments', column3: 'Time to pay tribute to those in the cinema world we lost last year',
            StartDate: new Date('03/05/2015 09:05:00 PM'), EndDate: new Date('03/05/2015 09:11:00 PM'), Predecessor: '27FS'
        },
        {
            TaskId: 29, TaskName: 'Oscar for best director', Winner: 'Guillermo del Toro', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:12:00 PM'), EndDate: new Date('03/05/2015 09:19:00 PM'), Predecessor: '28FS'
        },
        {
            TaskId: 30, TaskName: 'Best actor in a leading role', Winner: 'Gary Oldman', Movie: 'The Shape of Water',
            StartDate: new Date('03/05/2015 09:20:00 PM'), EndDate: new Date('03/05/2015 09:29:00 PM'), Predecessor: '29FS'
        },
        {
            TaskId: 31, TaskName: 'Best leading actress', Winner: 'Frances McDormand', Movie: 'Three Billboards Outside Ebbing, Missouri',
            StartDate: new Date('03/05/2015 09:30:00 PM'), EndDate: new Date('03/05/2015 09:44:00 PM'), Predecessor: '30FS'
        },
        {
            TaskId: 32, TaskName: 'Oscar for best picture.', Movie: 'The Shape of Water', Predecessor: '31FS',
            StartDate: new Date('03/05/2015 09:45:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM')
        },
        {
            TaskId: 33, TaskName: '90th Academy awards wind-up', Predecessor: '32FS',
            StartDate: new Date('03/05/2015 10:00:00 PM'), EndDate: new Date('03/05/2015 10:00:00 PM'), Duration: 0
        }
    ];
    exports.projectResources = [
        { resourceId: 1, resourceName: 'Project Manager' },
        { resourceId: 2, resourceName: 'Software Analyst' },
        { resourceId: 3, resourceName: 'Developer' },
        { resourceId: 4, resourceName: 'Testing Engineer' }
    ];
    exports.projectData = [
        {
            taskID: 1,
            taskName: 'Project Schedule',
            startDate: new Date('02/08/2019'),
            endDate: new Date('03/15/2019'),
            subtasks: [
                {
                    taskID: 2,
                    taskName: 'Planning',
                    startDate: new Date('02/08/2019'),
                    endDate: new Date('02/12/2019'),
                    subtasks: [
                        {
                            taskID: 3, taskName: 'Plan timeline', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 4, taskName: 'Plan budget', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 5, taskName: 'Allocate resources', startDate: new Date('02/08/2019'),
                            endDate: new Date('02/12/2019'), duration: 5, progress: '100', resourceId: [1]
                        },
                        {
                            taskID: 6, taskName: 'Planning complete', startDate: new Date('02/10/2019'),
                            endDate: new Date('02/10/2019'), duration: 0, predecessor: '3FS,4FS,5FS'
                        }
                    ]
                }, {
                    taskID: 7,
                    taskName: 'Design',
                    startDate: new Date('02/15/2019'),
                    endDate: new Date('02/19/2019'),
                    subtasks: [
                        {
                            taskID: 8, taskName: 'Software Specification', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '60', predecessor: '6FS', resourceId: [2]
                        },
                        {
                            taskID: 9, taskName: 'Develop prototype', startDate: new Date('02/15/2019'),
                            endDate: new Date('02/17/2019'), duration: 3, progress: '100', predecessor: '6FS', resourceId: [3]
                        },
                        {
                            taskID: 10, taskName: 'Get approval from customer', startDate: new Date('02/18/2019'),
                            endDate: new Date('02/19/2019'), duration: 2, progress: '100', predecessor: '9FS', resourceId: [1]
                        },
                        {
                            taskID: 11, taskName: 'Design complete', startDate: new Date('02/17/2019'),
                            endDate: new Date('02/17/2019'), duration: 0, predecessor: '10FS'
                        }
                    ]
                },
                {
                    taskID: 12,
                    taskName: 'Implementation Phase',
                    startDate: new Date('02/25/2019'),
                    endDate: new Date('03/05/2019'),
                    subtasks: [
                        {
                            taskID: 13,
                            taskName: 'Phase 1',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 14,
                                    taskName: 'Implementation Module 1',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 15, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 16, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', predecessor: '11FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 17, taskName: 'Testing', startDate: new Date('02/25/2019'),
                                            endDate: new Date('02/26/2019'), duration: 2, progress: '0', predecessor: '15FS,16FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 18, taskName: 'Bug fix', startDate: new Date('03/01/2019'),
                                            endDate: new Date('03/02/2019'), duration: 2, progress: '0', predecessor: '17FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 19, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/07/2019'), duration: 2, progress: '0', predecessor: '18FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 20, taskName: 'Phase 1 complete', startDate: new Date('03/05/2019'),
                                            endDate: new Date('03/05/2019'), duration: 0, predecessor: '19FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 21,
                            taskName: 'Phase 2',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/05/2019'),
                            subtasks: [{
                                    taskID: 22,
                                    taskName: 'Implementation Module 2',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/05/2019'),
                                    subtasks: [
                                        {
                                            taskID: 23, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 24, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/25/2019'), duration: 4, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 25, taskName: 'Testing', startDate: new Date('02/26/2019'),
                                            endDate: new Date('03/01/2019'), duration: 2, progress: '0', predecessor: '23FS,24FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 26, taskName: 'Bug fix', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/03/2019'), duration: 2, progress: '0', predecessor: '25FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 27, taskName: 'Customer review meeting', startDate: new Date('03/07/2019'),
                                            endDate: new Date('03/05/2019'), duration: 2, progress: '0', predecessor: '26FS', resourceId: [1]
                                        },
                                        {
                                            taskID: 28, taskName: 'Phase 2 complete', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/03/2019'), duration: 0, predecessor: '27FS'
                                        }
                                    ]
                                }]
                        },
                        {
                            taskID: 29,
                            taskName: 'Phase 3',
                            startDate: new Date('02/25/2019'),
                            endDate: new Date('03/07/2019'),
                            subtasks: [{
                                    taskID: 30,
                                    taskName: 'Implementation Module 3',
                                    startDate: new Date('02/25/2019'),
                                    endDate: new Date('03/07/2019'),
                                    subtasks: [
                                        {
                                            taskID: 31, taskName: 'Development Task 1', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 32, taskName: 'Development Task 2', startDate: new Date('02/22/2019'),
                                            endDate: new Date('02/24/2019'), duration: 3, progress: '50', resourceId: [3]
                                        },
                                        {
                                            taskID: 33, taskName: 'Testing', startDate: new Date('02/25/2019'), endDate: new Date('02/26/2019'),
                                            duration: 2, progress: '0', predecessor: '31FS,32FS', resourceId: [4]
                                        },
                                        {
                                            taskID: 34, taskName: 'Bug fix', startDate: new Date('03/01/2019'), endDate: new Date('03/05/2019'),
                                            duration: 2, progress: '0', predecessor: '33FS', resourceId: [3]
                                        },
                                        {
                                            taskID: 35, taskName: 'Customer review meeting', startDate: new Date('03/03/2019'),
                                            endDate: new Date('03/04/2019'), duration: 2, progress: '0', predecessor: '34FS',
                                            resourceId: [1]
                                        },
                                        {
                                            taskID: 36, taskName: 'Phase 3 complete', startDate: new Date('03/02/2019'),
                                            endDate: new Date('03/02/2019'), duration: 0, predecessor: '35FS'
                                        },
                                    ]
                                }]
                        }
                    ]
                },
                {
                    taskID: 37, taskName: 'Integration', startDate: new Date('03/08/2019'), endDate: new Date('03/10/2019'), duration: 3,
                    progress: '0', predecessor: '20FS,28FS,36FS', resourceId: [3]
                },
                {
                    taskID: 38, taskName: 'Final Testing', startDate: new Date('03/11/2019'), endDate: new Date('03/12/2019'), duration: 2,
                    progress: '0', predecessor: '37FS', resourceId: [4]
                },
                {
                    taskID: 39, taskName: 'Final Delivery', startDate: new Date('03/10/2019'), endDate: new Date('03/10/2019'),
                    duration: 0, predecessor: '38FS'
                }
            ]
        }
    ];
    exports.baselineData = [
        {
            TaskId: 1, TaskName: 'Receive vehicle and create job card', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:00:00 AM'), StartDate: new Date('03/05/2018 10:00:00 AM'),
            EndDate: new Date('03/05/2018 10:00:00 AM')
        },
        {
            TaskId: 2, TaskName: 'Allot mechanic and send vehicle to service bay', BaselineStartDate: new Date('03/05/2018 10:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:15:00 AM'), StartDate: new Date('03/05/2018 10:15:00 AM'),
            EndDate: new Date('03/05/2018 10:20:00 AM')
        },
        {
            TaskId: 3, TaskName: 'Change the Receive vehicle and create job cardengine oil',
            BaselineStartDate: new Date('03/05/2018 10:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 10:45:00 AM'), StartDate: new Date('03/05/2018 10:20:00 AM'),
            EndDate: new Date('03/05/2018 10:35:00 AM')
        },
        {
            TaskId: 4, TaskName: 'Replace the oil filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 5, TaskName: 'Replace the air filter', BaselineStartDate: new Date('03/05/2018 10:45:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:15:00 AM'), StartDate: new Date('03/05/2018 10:35:00 AM'),
            EndDate: new Date('03/05/2018 11:00:00 AM')
        },
        {
            TaskId: 6, TaskName: 'Replace the fuel filter', BaselineStartDate: new Date('03/05/2018 11:15:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:25:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:20:00 AM')
        },
        {
            TaskId: 7, TaskName: 'Replace the cabin filter', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:20:00 AM'), StartDate: new Date('03/05/2018 11:00:00 AM'),
            EndDate: new Date('03/05/2018 11:25:00 AM')
        },
        {
            TaskId: 8, TaskName: 'Replace the spark plugs', BaselineStartDate: new Date('03/05/2018 11:00:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:30:00 AM'), StartDate: new Date('03/05/2018 11:25:00 AM'),
            EndDate: new Date('03/05/2018 11:45:00 AM')
        },
        {
            TaskId: 9, TaskName: 'Check level and refill brake fluid/clutch fluid', BaselineStartDate: new Date('03/05/2018 11:20:00 AM'),
            BaselineEndDate: new Date('03/05/2018 11:40:00 AM'), StartDate: new Date('03/05/2018 11:30:00 AM'),
            EndDate: new Date('03/05/2018 11:50:00 AM')
        },
        {
            TaskId: 10, TaskName: 'Check Brake Pads/Liners, Brake Discs/Drums, and replace if worn out.',
            BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 11, TaskName: 'Check level and refill power steering fluid', BaselineStartDate: new Date('03/05/2018 11:40:00 AM'),
            BaselineEndDate: new Date('03/05/2018 12:00:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:15:00 PM')
        },
        {
            TaskId: 12, TaskName: 'Check level and refill Automatic/Manual Transmission Fluid',
            BaselineStartDate: new Date('03/05/2018 12:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 11:50:00 AM'),
            EndDate: new Date('03/05/2018 12:20:00 PM')
        },
        {
            TaskId: 13, TaskName: 'Grease and lubricate components', BaselineStartDate: new Date('03/05/2018 12:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 12:35:00 PM'), StartDate: new Date('03/05/2018 12:20:00 PM'),
            EndDate: new Date('03/05/2018 12:45:00 PM')
        },
        {
            TaskId: 14, TaskName: 'Inspect and replace the timing belt or timing chain if needed',
            BaselineStartDate: new Date('03/05/2018 12:35:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:00:00 PM'), StartDate: new Date('03/05/2018 12:45:00 PM'),
            EndDate: new Date('03/05/2018 1:00:00 PM')
        },
        {
            TaskId: 15, TaskName: 'Wheel Balancing', BaselineStartDate: new Date('03/05/2018 1:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:20:00 PM'), StartDate: new Date('03/05/2018 1:00:00 PM'),
            EndDate: new Date('03/05/2018 1:45:00 PM')
        },
        {
            TaskId: 16, TaskName: 'Wheel Alignment', BaselineStartDate: new Date('03/05/2018 1:20:00 PM'),
            BaselineEndDate: new Date('03/05/2018 1:45:00 PM'), StartDate: new Date('03/05/2018 1:45:00 PM'),
            EndDate: new Date('03/05/2018 2:45:00 PM')
        },
        {
            TaskId: 17, TaskName: 'Check for proper operation of all lights, wipers etc.', BaselineStartDate: new Date('03/05/2018 1:50:00 PM'),
            BaselineEndDate: new Date('03/05/2018 02:30:00 PM'), StartDate: new Date('03/05/2018 02:45:00 PM'),
            EndDate: new Date('03/05/2018 03:30:00 PM')
        },
        {
            TaskId: 18, TaskName: 'Check for any Error codes in the ECU and take corrective action.',
            BaselineStartDate: new Date('03/05/2018 2:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 3:30:00 PM'), StartDate: new Date('03/05/2018 03:30:00 PM'),
            EndDate: new Date('03/05/2018 04:15:00 PM')
        },
        {
            TaskId: 19, TaskName: 'Use scan tool read trouble code', BaselineStartDate: new Date('03/05/2018 03:30:00 PM'),
            BaselineEndDate: new Date('03/05/2018 04:45:00 PM'), StartDate: new Date('03/05/2018 04:15:00 PM'),
            EndDate: new Date('03/05/2018 04:45:00 PM')
        },
        {
            TaskId: 20, TaskName: 'Exterior washing', BaselineStartDate: new Date('03/05/2018 04:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:15:00 PM'), StartDate: new Date('03/05/2018 04:45:00 PM'),
            EndDate: new Date('03/05/2018 05:30:00 PM')
        },
        {
            TaskId: 21, TaskName: 'Interior vacuuming', BaselineStartDate: new Date('03/05/2018 05:15:00 PM'),
            BaselineEndDate: new Date('03/05/2018 05:45:00 PM'), StartDate: new Date('03/05/2018 05:30:00 PM'),
            EndDate: new Date('03/05/2018 06:00:00 PM')
        },
        {
            TaskId: 22, TaskName: 'Final service inspection', BaselineStartDate: new Date('03/05/2018 05:45:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:00:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        },
        {
            TaskId: 23, TaskName: 'Vehicle handover', BaselineStartDate: new Date('03/05/2018 06:00:00 PM'),
            BaselineEndDate: new Date('03/05/2018 06:00:00 PM'), StartDate: new Date('03/05/2018 06:30:00 PM'),
            EndDate: new Date('03/05/2018 06:30:00 PM')
        }
    ];
});