Multiple gantt exporting in EJ2 JavaScript Gantt control
2 May 202324 minutes to read
In Gantt, the Excel export provides support to export multiple Gantt data in new sheet or same sheet.
Same sheet
The Excel export provides support to export multiple Gantt data in the same sheet. To export in same sheet, define multipleExport.type
as AppendToSheet
in ExcelExportProperties
. You can also provide blank rows between exported multiple Gantt data. These blank rows count can be defined using multipleExport.blankRows
.
ej.gantt.Gantt.Inject(ej.gantt.ExcelExport,ej.gantt.Toolbar);
var firstGantt = new ej.gantt.Gantt({
dataSource: [GanttData[0]],
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
allowExcelExport: true,
projectStartDate: new Date('03/31/2019'),
projectEndDate: new Date('04/14/2019'),
height:280,
toolbar: ['ExcelExport']
});
firstGantt.appendTo('#GanttExport1');
var secondGantt = new ej.gantt.Gantt({
dataSource: [GanttData[1]],
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
height:250,
allowExcelExport: true
});
secondGantt.appendTo('#GanttExport2');
firstGantt.toolbarClick = function(args) {
if (args.item.id === 'GanttExport1_excelexport') {
var appendExcelExportProperties = {
multipleExport: { type: 'AppendToSheet', blankRows: 2 }
};
var firstGanttExport= firstGantt.excelExport(appendExcelExportProperties, true);
firstGanttExport.then(function(fData){
secondGantt.excelExport(appendExcelExportProperties, false, fData);
});
}
}
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Gantt</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Gantt Controls">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" type="text/css">
<script src="https://cdn.syncfusion.com/ej2/23.2.4/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="GanttExport1"></div>
<div id="GanttExport2" style="margin-top:10px"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
By default,
multipleExport.blankRows
value is 5.
New sheet
The Excel exporting provides support to export multiple Gantt in new sheet. To export in new sheet, define multipleExport.type
as NewSheet
in ExcelExportProperties
.
ej.gantt.Gantt.Inject(ej.gantt.ExcelExport,ej.gantt.Toolbar);
var firstGantt = new ej.gantt.Gantt({
dataSource: [GanttData[0]],
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
allowExcelExport: true,
projectStartDate: new Date('03/31/2019'),
projectEndDate: new Date('04/14/2019'),
height:280,
toolbar: ['ExcelExport']
});
firstGantt.appendTo('#GanttExport1');
var secondGantt = new ej.gantt.Gantt({
dataSource: [GanttData[1]],
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
height:250,
allowExcelExport: true
});
secondGantt.appendTo('#GanttExport2');
firstGantt.toolbarClick = function(args) {
if (args.item.id === 'GanttExport1_excelexport') {
var appendExcelExportProperties = {
multipleExport: { type: 'NewSheet' }
};
var firstGanttExport= firstGantt.excelExport(appendExcelExportProperties, true);
firstGanttExport.then(function(fData){
secondGantt.excelExport(appendExcelExportProperties, false, fData);
});
}
}
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Gantt</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Gantt Controls">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" type="text/css">
<script src="https://cdn.syncfusion.com/ej2/23.2.4/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="GanttExport1"></div>
<div id="GanttExport2" style="margin-top:10px"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
Customize the Excel export
Gantt Excel export allows the users to customize the exported document based on requirement.
Export hidden columns
In Gantt, the Excel export provides an option to export hidden columns by defining includeHiddenColumn
as true
.
var clickHandler = function(args){
if (args.item.id === 'GanttExport_excelexport') {
var excelExportProperties = {
includeHiddenColumn: true
};
ganttChart.excelExport(excelExportProperties);
}
else if (args.item.id === 'GanttExport_csvexport') {
var excelExportProperties = {
includeHiddenColumn: true
};
ganttChart.csvExport(excelExportProperties);
}
};
ej.gantt.Gantt.Inject(ej.gantt.ExcelExport,ej.gantt.Toolbar);
var ganttChart = new ej.gantt.Gantt({
dataSource: GanttData,
height: '450px',
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
allowExcelExport: true,
columns: [
{ field: 'TaskID', headerText: 'Task ID', textAlign: 'Left', width: '100' },
{ field: 'TaskName', headerText: 'Task Name', width: '150' },
{ field: 'StartDate', headerText: 'Start Date', width: '150',visible:false },
{ field: 'Duration', headerText: 'Duration', width: '150' },
{ field: 'Progress', headerText: 'Progress', width: '150' },
],
toolbar: ['ExcelExport', 'CsvExport'],
toolbarClick: clickHandler
});
ganttChart.appendTo('#GanttExport');
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Gantt</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Gantt Controls">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" type="text/css">
<script src="https://cdn.syncfusion.com/ej2/23.2.4/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="GanttExport"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
Show or hide columns on exported Excel
In Gantt, while exporting, you can show a hidden column or hide a visible column using the toolbarClick
and excelExportComplete
events.
In the toolbarClick
event, using the args.item.id
property, you can show or hide columns by setting the column.visible
property to true
or false
respectively.
Similarly, in the excelExportComplete
event, you can revert the columns visibility back to the previous state.
var clickHandler = function(args){
let columns = ganttChart.treeGrid.grid.columns;
if (args.item.id === 'GanttExport_excelexport') {
columns[0].visible = true;
columns[3].visible = false;
ganttChart.excelExport();
}
else if (args.item.id === 'GanttExport_csvexport') {
columns[0].visible = true;
columns[3].visible = false;
ganttChart.csvExport();
}
};
var exportComplete = function(args){
let columns = ganttChart.treeGrid.grid.columns;
columns[0].visible = false;
columns[3].visible = true;
};
ej.gantt.Gantt.Inject(ej.gantt.ExcelExport,ej.gantt.Toolbar);
var ganttChart = new ej.gantt.Gantt({
dataSource: GanttData,
height: '450px',
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
allowExcelExport: true,
columns: [
{ field: 'TaskID', headerText: 'Task ID', textAlign: 'Left', width: '100',visible: false },
{ field: 'TaskName', headerText: 'Task Name', width: '150' },
{ field: 'StartDate', headerText: 'Start Date', width: '150' },
{ field: 'Duration', headerText: 'Duration', width: '150' },
{ field: 'Progress', headerText: 'Progress', width: '150' },
],
toolbar: ['ExcelExport', 'CsvExport'],
toolbarClick: clickHandler,
excelExportComplete: exportComplete
});
ganttChart.appendTo('#GanttExport');
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Gantt</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Gantt Controls">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" type="text/css">
<script src="https://cdn.syncfusion.com/ej2/23.2.4/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="GanttExport"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
Cell formatting during export
In Gantt, you can customize the TreeGrid cells in the exported document using the excelQueryCellInfo
event. In this event, you can format the TreeGrid cells of exported Excel and CSV documents based on the required condition.
In the following sample, the background color has been customized for TaskID
column in the exported Excel using the args.style
and backColor
properties.
var clickHandler = function(args){
if (args.item.id === 'GanttExport_excelexport') {
ganttChart.excelExport();
}
};
ej.gantt.Gantt.Inject(ej.gantt.ExcelExport,ej.gantt.Toolbar);
var ganttChart = new ej.gantt.Gantt({
dataSource: GanttData,
height: '450px',
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
allowExcelExport: true,
toolbar: ['ExcelExport'],
labelSettings:{
taskLabel: '${Progress}%'
},
splitterSettings: {
columnIndex: 3
},
columns: [
{ field: 'TaskID', headerText: 'Task ID', textAlign: 'Left', width: '100',visible:false },
{ field: 'TaskName', headerText: 'Task Name', width: '150' },
{ field: 'Progress', headerText: 'Progress', width: '150' },
{ field: 'StartDate', headerText: 'Start Date', width: '150' },
{ field: 'Duration', headerText: 'Duration', width: '150' }
],
excelQueryCellInfo: function(args) {
if(args.column.field == 'Progress'){
if(args.value > 80) {
args.style = { backColor: '#A569BD' };
}
else if(args.value < 20) {
args.style = { backColor: '#F08080' };
}
}
},
queryTaskbarInfo: function(args) {
if (args.data.Progress > 80) {
args.progressBarBgColor = "#6C3483";
args.taskbarBgColor = args.taskbarBorderColor = "#A569BD";
} else if (args.data.Progress < 20) {
args.progressBarBgColor = "#CD5C5C";
args.taskbarBgColor = args.taskbarBorderColor = "#F08080";
}
},
queryCellInfo: function(args) {
if(args.column.field == 'Progress'){
if(args.data.Progress > 80) {
args.cell.style.backgroundColor = '#A569BD';
}
else if(args.data.Progress < 20) {
args.cell.style.backgroundColor = '#F08080';
}
}
},
toolbarClick: clickHandler
});
ganttChart.appendTo('#GanttExport');
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Gantt</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Gantt Controls">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" type="text/css">
<script src="https://cdn.syncfusion.com/ej2/23.2.4/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="GanttExport"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
Theme
The Excel export also provides an option to include custom theme for exported Excel document.
To apply theme in exported Excel, define the theme
in ExcelExportProperties
.
ej.gantt.Gantt.Inject(ej.gantt.ExcelExport,ej.gantt.Toolbar);
var ganttChart = new ej.gantt.Gantt({
dataSource: GanttData,
height: '450px',
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
allowExcelExport: true,
toolbar: ['ExcelExport'],
});
ganttChart.appendTo('#GanttExport');
ganttChart.toolbarClick = (args) => {
if (args['item'].id === 'GanttExport_excelexport') {
let excelExportProperties = {
theme:
{
header: { fontName: 'Segoe UI', fontColor: '#666666' },
record: { fontName: 'Segoe UI', fontColor: '#666666' },
caption: { fontName: 'Segoe UI', fontColor: '#666666' }
}
};
ganttChart.excelExport(excelExportProperties);
}
}
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Gantt</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Gantt Controls">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" type="text/css">
<script src="https://cdn.syncfusion.com/ej2/23.2.4/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="GanttExport"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
By default, material theme is applied to the exported Excel document.
Add header and footer
The Excel export also allows users to include header and footer contents to the exported Excel document.
ej.gantt.Gantt.Inject(ej.gantt.ExcelExport,ej.gantt.Toolbar);
var ganttChart = new ej.gantt.Gantt({
dataSource: GanttData,
height: '450px',
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
allowExcelExport: true,
toolbar: ['ExcelExport'],
});
ganttChart.appendTo('#GanttExport');
ganttChart.toolbarClick = (args) => {
if (args['item'].id === 'GanttExport_excelexport') {
let excelExportProperties = {
header: {
headerRows: 7,
rows: [
{ cells: [{ colSpan: 4, value: "Northwind Traders", style: { fontColor: '#C67878', fontSize: 20, hAlign: 'Center', bold: true, } }] },
{ cells: [{ colSpan: 4, value: "2501 Aerial Center Parkway", style: { fontColor: '#C67878', fontSize: 15, hAlign: 'Center', bold: true, } }] },
{ cells: [{ colSpan: 4, value: "Suite 200 Morrisville, NC 27560 USA", style: { fontColor: '#C67878', fontSize: 15, hAlign: 'Center', bold: true, } }] },
{ cells: [{ colSpan: 4, value: "Tel +1 888.936.8638 Fax +1 919.573.0306", style: { fontColor: '#C67878', fontSize: 15, hAlign: 'Center', bold: true, } }] },
{ cells: [{ colSpan: 4, hyperlink: { target: 'https://www.northwind.com/', displayText: 'www.northwind.com' }, style: { hAlign: 'Center' } }] },
{ cells: [{ colSpan: 4, hyperlink: { target: 'mailto:support@northwind.com' }, style: { hAlign: 'Center' } }] },
]
},
footer: {
footerRows: 4,
rows: [
{ cells: [{ colSpan: 4, value: "Thank you for your business!", style: { hAlign: 'Center', bold: true } }] },
{ cells: [{ colSpan: 4, value: "!Visit Again!", style: { hAlign: 'Center', bold: true } }] }
]
},
};
ganttChart.excelExport(excelExportProperties);
}
}
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Gantt</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Gantt Controls">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" type="text/css">
<script src="https://cdn.syncfusion.com/ej2/23.2.4/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="GanttExport"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>
File name for exported document
You can set the required file name for the exported document by defining the fileName
property in ExcelExportProperties
.
ej.gantt.Gantt.Inject(ej.gantt.ExcelExport,ej.gantt.Toolbar);
var ganttChart = new ej.gantt.Gantt({
dataSource: GanttData,
height: '450px',
taskFields: {
id: 'TaskID',
name: 'TaskName',
startDate: 'StartDate',
duration: 'Duration',
progress: 'Progress',
child: 'subtasks'
},
treeColumnIndex: 1,
allowExcelExport: true,
toolbar: ['ExcelExport', 'CsvExport'],
});
ganttChart.appendTo('#GanttExport');
ganttChart.toolbarClick = (args) => {
if (args['item'].id === 'GanttExport_excelexport') {
let excelExportProperties = {
fileName:"Gantt.xlsx"
};
ganttChart.excelExport(excelExportProperties);
}
else if (args['item'].id === 'GanttExport_csvexport') {
let excelExportProperties = {
fileName:"Gantt.csv"
};
ganttChart.csvExport(excelExportProperties);
}
}
<!DOCTYPE html><html lang="en"><head>
<title>EJ2 Gantt</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Typescript Gantt Controls">
<meta name="author" content="Syncfusion">
<link href="index.css" rel="stylesheet">
<link href="https://cdn.syncfusion.com/ej2/material.css" rel="stylesheet" type="text/css">
<script src="https://cdn.syncfusion.com/ej2/23.2.4/dist/ej2.min.js" type="text/javascript"></script>
<script src="es5-datasource.js" type="text/javascript"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="GanttExport"></div>
</div>
<script>
var ele = document.getElementById('container');
if(ele) {
ele.style.visibility = "visible";
}
</script>
<script src="index.js" type="text/javascript"></script>
</body></html>