---
layout: post
title: Angular Grid - Grouping Style | Syncfusion
description: Angular Grid grouping style covers visual customization of group headers, captions, and aggregates to present grouped data consistently.
platform: grid-sdk
control: Grouping 
documentation: ug
domainurl: https://help.syncfusion.com/grid-sdk
---

# Grouping Customization in Angular Grid component

The appearance of grouping elements in the [Angular Data Grid](https://www.syncfusion.com/angular-components/angular-data-grid) component can be customized using CSS. Here are examples for customizing the group header, group expand/collapse icons, group caption row, and grouping indent cell.

## Customize the group drop area header

The `.e-groupdroparea` class is used to style the group header element.

```css
.e-grid .e-groupdroparea {
    background-color: #132f49;
}
```

![Group header](../images/group-header.png)

## Customize the group expand and collapse icons

The `.e-icon-gdownarrow` and `.e-icon-grightarrow` classes are used to style the expand and collapse icons.

```css
.e-grid .e-icon-gdownarrow::before{
    content:'\e7c9'
    }
    .e-grid .e-icon-grightarrow::before{
    content:'\e80f'
}
```

In this example, the `content` property is modified to change the icon displayed. Available Syncfusion<sup style="font-size:70%">&reg;</sup> icons can be used based on the active theme.

![Group expand or collapse icons](../images/group-expand-or-collapse-icons.png)

## Customize the group caption row

The `.e-groupcaption` class is used to style the group caption row element, and the `.e-recordplusexpand` and `.e-recordpluscollapse` classes are used for the icons indicating record expansion or collapse.

```css
.e-grid .e-groupcaption {
    background-color: #deecf9;
}

.e-grid .e-recordplusexpand,
.e-grid .e-recordpluscollapse {
    background-color: #deecf9;
}
```

![Group caption row](../images/group-caption-row.png)

## Customize the grouping indent cell

The `.e-indentcell` class is used to style the indent cell that appears in grouped grid rows.

```css
.e-grid .e-indentcell {
    background-color: #deecf9;
}
```

![Grouping indent cell](../images/indent-cell.png)
