> For the complete documentation index, see [llms.txt](https://docs.grid.glideapps.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.grid.glideapps.com/api/cells/drilldowncell.md).

# DrilldownCell

Renders text and images in rounded rectangles. Always read only.

```typescript
export interface DrilldownCellData {
    readonly text: string;
    readonly img?: string;
}

export interface DrilldownCell extends BaseGridCell {
    readonly kind: GridCellKind.Drilldown;
    readonly data: readonly DrilldownCellData[];
}
```

### data

A collection of text/image tuples.
