---
title: "Version Compatibility"
framework: angular
version: "36.1.0"
---

# Version Compatibility

Listed below are the version compatibility requirements for AG Grid if they exist.

## AG Grid & Angular Compatibility Chart

The table below gives the ranges of compatible versions of AG Grid with Angular versions.

| Angular | AG Grid |
| --- | --- |
| 20 - 22 | 28 - 36+ |
| 18 - 19 | 28 - 35 |
| 17 | 28 - 34 |
| 16 | 28 - 32 |
| 14 - 15 | 25 - 31 |
| 12 - 13 | 25 - 30 |
| 10 - 11 | 24 - 27 |
| 9 | 23 - 27 |
| 8 | 18 - 27 |
| 6 - 7 | 18 - 22 |

## Future Support of Angular versions

Future AG Grid versions will provide support for the lowest Angular Long-term (LTS) version at the time of release. See [Angular Support policy and schedule](https://angular.dev/reference/releases#support-policy-and-schedule).

## Zoneless Support

AG Grid is fully compatible with [Zoneless](https://angular.dev/guide/zoneless) Angular applications with no additional configuration. If migrating to Zoneless and using custom components then these must meet the [requirements for Zoneless compatibility](https://angular.dev/guide/zoneless#requirements-for-zoneless-compatibility).

## Migration to AG Grid v28+

### Angular v12+

To migrate applications on Angular v12+ to AG Grid v28+ requires no dependency changes. There are [breaking changes](https://www.ag-grid.com/changelog/?fixVersion=28.0.0), notably `AgGridModule` no longer supports `.withComponents()` as it is not required any more.

```diff
@NgModule({
    imports: [
-         AgGridModule.withComponents([SquareComponent]),
+         AgGridModule,
    ]
})
```

If using Angular v12+ and versions of AG Grid up to v27 the following warning may be present in the build output. To avoid this, upgrade to at least v28 of AG Grid which is published as an Ivy distribution.

```bash
Generating browser application bundles (phase: setup)...
Processing legacy "View Engine" libraries:
- ag-grid-angular [es2015/esm2015]
Encourage the library authors to publish an Ivy distribution.
```

## TypeScript Compatibility

The table below gives the minimum TypeScript version for each AG Grid version.

| AG Grid | Typescript |
| --- | --- |
| 36+ | >= 5.8.3 |
| 35 | >= 5.4.5 |
| 33 - 34 | >= 5.2.0 |
| 32 | >= 5.1.6 |
| 31 | >= 4.7.4 |
| 30 | >= 4.3.5 |
| 29 | >= 4.0.8 |
| 28 - 27 | >= 3.7.7 |
| 26 - 25 | >= 3.6.5 |

## Documentation Archive

To view AG Grid documentation for older versions, please refer to the [Documentation archive](https://www.ag-grid.com/documentation-archive/).
