有什么方法可以使用 ag-grid 和 angluar 更改导出 excel 中 header 的 font-size
Is there any way to change the font-size of header in exported excel using ag-grid with angluar
当我们导出 ag-grid 中显示的数据时,我们可以使用内置的导出功能导出它们。对于导出的 excel,我们需要更改所有单元格的字体大小,包括 header。有一种方法可以更改数据单元格值的字体大小,但不能更改单元格 headers.
可以使用 excel样式并在 JSON.
中提供字体:{ size: "11"} 来编辑单元格值的字体大小
有谁知道我们如何更改导出的 excel 中 header 的 font-size
使用将在 excelStyles 中映射网格 headers 的 id header
。
Headers are a special case, headers are exported to Excel as normal rows, so in order to allow you to style them you can provide an ExcelStyle with id and name "header". If you do so, the headers
excelStyles: [
{
id: 'header',
font: {size: 35}
},
...
]
当我们导出 ag-grid 中显示的数据时,我们可以使用内置的导出功能导出它们。对于导出的 excel,我们需要更改所有单元格的字体大小,包括 header。有一种方法可以更改数据单元格值的字体大小,但不能更改单元格 headers.
可以使用 excel样式并在 JSON.
中提供字体:{ size: "11"} 来编辑单元格值的字体大小有谁知道我们如何更改导出的 excel 中 header 的 font-size
使用将在 excelStyles 中映射网格 headers 的 id header
。
Headers are a special case, headers are exported to Excel as normal rows, so in order to allow you to style them you can provide an ExcelStyle with id and name "header". If you do so, the headers
excelStyles: [
{
id: 'header',
font: {size: 35}
},
...
]