我在我的角度应用程序中使用了ag-grid,并试图导出到excel。我想在Excel中设置标题行的样式。谁能帮我实现这个目标?我尝试了以下操作,但似乎没有用。
this.excelStyles = [
{
id: 'smallFont',
font: {
fontName:'Calibri',
size: 9
}
},
{
id:'blueBackground',
interior: {
color: 'blue',
pattern: 'solid'
}
}
]
defaultColDef: {
cellClassRules: {
smallFont: (params) => true,
blueBackground: (params) => params.rowIndex == 0
}
}
谢谢
答案 0 :(得分:0)
按如下所示设置ID为'header'的excelstyle将为excel标题设置样式。
{
id:'header',
interior: {
color: '#002776',
pattern: 'solid'
},
font: {
color: '#ffffff',
fontName: 'Calibri',
size: 9,
bold: true
}
}