Can I add an image in export excel file, top row of excel? like a logo for example
Can I add an image in export excel file, top row of excel? like a logo for example
ds1234
Posts: 2Questions: 2Answers: 0
in DataTables
What i need to change:
{
extend: 'excel',
className: 'colorName',
text: '<h2>EXPORT TO EXCEL</h2>', //'Export to Excel',
//orientation: 'landscape',
//pageSize: '11x17',
title: 'Hello',
exportOptions: {
modifier: {
search: 'applied',
order: 'applied'
}
},
customize: function (doc: any) {
console.log(doc);
const worksheets = doc.xl.worksheets;
const sheet1 = worksheets['sheet1.xml'];
console.log(sheet1)
sheet1.querySelector('c is t').innerHTML = 'Testing';
}
}
Answers
Duplicate of this thread, please don't post the same question twice,
Colin