I can format the items using the following code:
How do I format the footer and my grouped headers?
| protected void RadGrid1_ExcelExportCellFormatting(object source, ExcelExportCellFormattingEventArgs e) |
| { |
| GridDataItem item = e.Cell.Parent as GridDataItem; |
| item.Style["background-color"] = "#ffffff"; |
| item.Style["font-size"] = "11px"; |
| item.Style["font-family"] = "Verdana"; |
| } |
How do I format the footer and my grouped headers?