# ColumnGroupInfo

> _Since v1.15.0_

Column grouping info returned by the `getColumnGrouping` plugin query.
Plugins like GroupingColumnsPlugin respond with this to describe
how columns are organized into groups for the visibility panel.

**Important:** This type describes group *membership* — which fields belong
to which group. For authoritative display order, use `grid.getAllColumns()`
or `grid.getColumnOrder()` from the ConfigManager, which reflects the
current column positions after any reordering.

## Properties

| Property | Type | Description |
| -------- | ---- | ----------- |
| `id` | <code>string</code> | Unique group identifier |
| `label` | <code>string</code> | Display label for the group |
| `fields` | <code>string[]</code> | Column field names belonging to this group. |
