Baseline in JavaScript Gantt control
18 Nov 20183 minutes to read
The baseline feature in the Gantt Chart control enables comparison between original planned schedules and actual task execution timelines. This visualization provides clear insights into schedule deviations, helping assess project performance and identify areas requiring attention. Baseline functionality displays both the original planned timeline and current progress side-by-side for comprehensive project tracking.
Before implementing baseline functionality, ensure the data source includes baseline date fields and configure the taskFields object with appropriate field mappings. The baseline feature requires proper field mapping to display planned versus actual timelines effectively.
Baseline fields:
- baselineStartDate: Represents the originally planned start date of a task. This value is used to compare against the actual start date to identify schedule deviations.
- baselineEndDate: Represents the originally planned end date of a task. It is used to compare against the actual end date.
-
baselineDuration: Represents the total planned duration of the task. This value is critical for baseline visualization. To represent a baseline milestone, this property must be explicitly set to
0. SettingbaselineStartDateandbaselineEndDateto the same value without settingbaselineDurationto0will result in a one-day baseline task, not a milestone.
Implement baseline
To enable baseline, configure the Gantt control by setting renderBaseline to true, mapping baselineStartDate, baselineEndDate, and optionally baselineDuration in taskFields. To customize appearance set the baselineColor property or the .e-baseline-bar CSS class for advanced styling.
export let projectData = [
{
TaskID: 1,
TaskName: 'Project Planning',
StartDate: new Date('02/04/2019'),
EndDate: new Date('02/08/2019'),
baselineStartDate: new Date('02/02/2019'),
baselineEndDate: new Date('02/06/2019'),
baselineDuration: '5' // Regular baseline
},
{
TaskID: 2,
TaskName: 'Milestone Review',
StartDate: new Date('02/10/2019'),
EndDate: new Date('02/10/2019'),
baselineStartDate: new Date('02/09/2019'),
baselineEndDate: new Date('02/09/2019'),
baselineDuration: '0' // Milestone baseline
}
];
var baselineColor = 'rgba(255, 107, 107, 0.8)';.e-gantt .e-gantt-chart .e-baseline-bar {
height: 4px;
border-radius: 2px;
opacity: 0.9;
background-color: #4CAF50;
}The following example demonstrates complete baseline configuration with proper field mapping:
Customize baseline using event
You can customize the baseline bar in the Gantt chart using the queryTaskbarInfo event.
Customize baseline templates
The baselineTemplate property allows customization of baseline rendering by replacing the default baseline UI with a custom HTML structure. This enables advanced scenarios such as rendering additional baseline elements, visual indicators, or multiple baselines using task-specific data.
Set the baselineTemplate property with a template string or function. The template receives the task data object, which can be used to dynamically generate baseline elements.
Multiple baseline rendering using template
By default, the Gantt component supports a single baseline per task. However, using the baselineTemplate, you can extend this behavior to render multiple baselines by maintaining additional baseline data within a custom field in your data source.
This enables rich visualization scenarios such as:
- Comparing original vs revised schedules.
- Visualizing multiple planning phases.
- Highlighting deviations across timeline checkpoints.
The following example demonstrates how to render multiple baselines using baselineTemplate.