我想将背景格式为Excel的数据导出到标题行。
我已使用Angular2Csv导出文件,但无法向标题添加背景色。
let options = {
fieldSeparator: ',',
quoteStrings: '"',
decimalseparator: '.',
showLabels: true,
title: 'Doctors Report',
showTitle: true,
headers: ['Fullname','Email','Phone No','],
};
new Angular2Csv(localArray, 'Title', options);
Run Code Online (Sandbox Code Playgroud)
我想以excel / csv格式导出带有标题背景的数组。
angular ×1