# DefaultExpandedValue

> _Since v1.5.0_

Default expanded state for group rows.
- `boolean`: true = expand all, false = collapse all
- `number`: expand group at this index (0-based)
- `string`: expand group with this key
- `string[]`: expand groups with these keys

```ts
type DefaultExpandedValue = boolean | number | string | string[]
```
