It disappeared so I had to use this:
| if (e.Item is GridGroupFooterItem) |
| { |
| GridGroupFooterItem groupedItem = e.Item as GridGroupFooterItem; |
| groupedItem.Style["width"] = "20px"; |
| groupedItem.Style["height"] = "20px"; |
| groupedItem.Style["background-color"] = "lightgray"; |
| groupedItem.Style["font-size"] = "11px"; |
| groupedItem.Style["font-family"] = "Verdana"; |
| groupedItem.Style["text-align"] = "right"; groupedItem.Style["font-weight"] = "bold"; |
| groupedItem.Style["vertical-align"] = "text-top"; } |