js-export-excel excel外边框
时间: 2023-08-14 17:13:54 浏览: 178
export-xlsx:汇出Excel
要在导出的 Excel 文件中添加外边框,你可以使用 js-export-excel 库提供的样式配置选项。以下是一个示例代码,将单元格添加外边框:
```javascript
const Excel = require('js-export-excel');
// 创建一个新的 Excel 实例
const excel = new Excel();
// 定义表头
const header = ['Name', 'Age', 'Email'];
// 定义数据行
const data = [
['John Doe', 25, 'john@example.com'],
['Jane Smith', 30, 'jane@example.com'],
['Bob Johnson', 35, 'bob@example.com'],
];
// 添加表头和数据行到 Excel 实例
excel.set({
sheetData: [
{
sheetName: 'Sheet1',
sheetHeader: header,
sheetData: data,
},
],
});
// 设置样式配置
const style = {
border: {
top: {
style: 'thin',
color: '000000',
},
right: {
style: 'thin',
color: '000000',
},
bottom: {
style: 'thin',
color: '000000',
},
left: {
style: 'thin',
color: '000000',
},
},
};
// 设置样式配置到 Excel 实例
excel.set({
style,
});
// 导出 Excel 文件
excel.export('example.xlsx');
```
在上面的示例中,我们通过 `style` 对象设置了边框样式,使用 `thin` 样式和黑色边框颜色。你可以根据需要自定义样式来调整边框的样式和颜色。最后,我们使用 `export` 方法将 Excel 文件导出为 `example.xlsx`。记得安装 `js-export-excel` 库并引入它的依赖项。
阅读全文