Gathering detailed insights and metrics for ag-grid-react
Gathering detailed insights and metrics for ag-grid-react
Gathering detailed insights and metrics for ag-grid-react
Gathering detailed insights and metrics for ag-grid-react
ag-grid-community
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
ag-grid-enterprise
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
@ag-grid-community/core
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
ag-grid
Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.
npm install ag-grid-react
Typescript
Module System
Node Version
NPM Version
93.9
Supply Chain
94
Quality
96.1
Maintenance
100
Vulnerability
100
License
TypeScript (93.05%)
SCSS (2.99%)
JavaScript (1.9%)
CSS (1.45%)
Shell (0.42%)
HTML (0.09%)
Vue (0.09%)
sed (0.01%)
Total Downloads
76,385,279
Last Day
23,741
Last Week
738,303
Last Month
2,959,516
Last Year
26,311,905
NOASSERTION License
14,412 Stars
44,461 Commits
2,005 Forks
216 Watchers
804 Branches
144 Contributors
Updated on Sep 03, 2025
Latest Version
34.1.2
Package Id
ag-grid-react@34.1.2
Unpacked Size
633.94 kB
Size
139.13 kB
File Count
66
NPM Version
10.2.4
Node Version
20.11.1
Published on
Aug 21, 2025
Cumulative downloads
Total Downloads
Last Day
10.9%
23,741
Compared to previous day
Last Week
0.8%
738,303
Compared to previous week
Last Month
2.2%
2,959,516
Compared to previous month
Last Year
58.7%
26,311,905
Compared to previous year
AG Grid is a fully-featured and highly customizable React Data Grid. It delivers outstanding performance and has no third-party dependencies.
AG Grid is available in two versions: Community & Enterprise.
ag-grid-community
is free, available under the MIT license, and comes with all of the core features expected from a React Data Grid, including Sorting, Filtering, Pagination, Editing, Custom Components, Theming and more.ag-grid-enterprise
is available under a commercial license and comes with advanced features, like Integrated Charting, Row Grouping, Aggregation, Pivoting, Master/Detail, Server-side Row Model, and Exporting in addition to dedicated support from our Engineering team.Feature | AG Grid Community | AG Grid Enterprise |
---|---|---|
Filtering | ✅ | ✅ (Advanced) |
Sorting | ✅ | ✅ |
Cell Editing | ✅ | ✅ |
CSV Export | ✅ | ✅ |
Drag & Drop | ✅ | ✅ |
Themes and Styling | ✅ | ✅ |
Selection | ✅ | ✅ |
Accessibility | ✅ | ✅ |
Infinite Scrolling | ✅ | ✅ |
Pagination | ✅ | ✅ |
Server-Side Data | ✅ | ✅ (Advanced) |
Custom Components | ✅ | ✅ |
Integrated Charting | ❌ | ✅ |
Range Selection | ❌ | ✅ |
Row Grouping and Aggregation | ❌ | ✅ |
Pivoting | ❌ | ✅ |
Excel Export | ❌ | ✅ |
Clipboard Operations | ❌ | ✅ |
Master/Detail | ❌ | ✅ |
Tree Data | ❌ | ✅ |
Column Menu | ❌ | ✅ |
Context Menu | ❌ | ✅ |
Tool Panels | ❌ | ✅ |
Support | ❌ | ✅ |
ℹ️ Note:
Visit the Pricing page for a full comparison.
We've created several demos to showcase AG Grid's rich feature set across different use cases. See them in action below, or interact with them on our Demo page.
AG Grid is easy to set up - all you need to do is provide your data and define your column structure.
1$ npm install --save ag-grid-react
1. Register Modules
Register the AllCommunityModule
to access all Community features:
1import { AllCommunityModule, ModuleRegistry } from 'ag-grid-community'; 2 3// Register all Community features 4ModuleRegistry.registerModules([AllCommunityModule]);
ℹ️ Note:
To minimize bundle size, only register the modules you want to use. See the Modules page for more information.
2. Import the React Data Grid
1// React Data Grid Component 2import { AgGridReact } from 'ag-grid-react';
3. Define Rows and Columns
1const GridExample = () => { 2 // Row Data: The data to be displayed. 3 const [rowData, setRowData] = useState([ 4 { make: 'Tesla', model: 'Model Y', price: 64950, electric: true }, 5 { make: 'Ford', model: 'F-Series', price: 33850, electric: false }, 6 { make: 'Toyota', model: 'Corolla', price: 29600, electric: false }, 7 ]); 8 9 // Column Definitions: Defines the columns to be displayed. 10 const [colDefs, setColDefs] = useState([ 11 { field: 'make' }, 12 { field: 'model' }, 13 { field: 'price' }, 14 { field: 'electric' }, 15 ]); 16 17 // ... 18};
4. React Data Grid Component
1return ( 2 // set a height on the parent div because the grid fills the available space 3 <div style={{ height: 500 }}> 4 <AgGridReact rowData={rowData} columnDefs={colDefs} /> 5 </div> 6);
ℹ️ Note:
For more information on building Data Grids with AG Grid, refer to our Documentation.
We also provide Seed Projects to help you get started with common configurations:
Environment | Framework |
---|---|
Create React App (CRA) | |
Vite | |
Create Next App | |
Vite - TypeScript | |
Webpack 5 - TypeScript | |
Webpack 5 - React | |
Angular CLI | |
Nuxt | |
Vite |
AG Grid is fully customisable, both in terms of appearance and functionality. There are many ways in which the grid can be customised and we provide a selection of tools to help create those customisations.
You can create your own Custom Components to customise the behaviour of the grid. For example, you can customise how cells are rendered, how values are edited and also create your own filters.
There are a number of different Component Types that you can provide to the grid, including:
To supply a custom cell renderer and filter components to the Grid, create a direct reference to your component within the gridOptions.columnDefs
property:
1gridOptions = { 2 columnDefs: [ 3 { 4 field: 'country', // The column to add the component to 5 cellRenderer: CountryCellRenderer, // Your custom cell component 6 filter: CountryFilter, // Your custom filter component 7 }, 8 ], 9};
AG Grid has 4 themes, each available in light
& dark
modes:
Quartz | Material |
---|---|
![]() |
![]() |
Alpine | Balham |
![]() |
![]() |
All AG Grid themes can be customised using the Theming API, or you can create a new theme from scratch with the help of our Theme Builder or Figma Design System.
AG Grid has a large and active community who have created an ecosystem of 3rd party tools, extensions and utilities to help you build your next project with AG Grid, no matter which language or framework you use:
AG Grid is used by 100,000's of developers across the world, from almost every industry. Whilst most of these projects are private, we've curated a selection of open-source projects from different industries where household names use AG Grid, including J.P.Morgan, MongoDB and NASA. Visit our Community Showcase page to learn more.
Founded in 2016, AG Grid has seen a steady rise in popularity and is now the market leader for Data Grids:
AG Grid Enterprise customers have access to dedicated support via ZenDesk, which is monitored by our engineering teams.
If you have found a bug, please report it in this repository's issues section.
Look for similar problems on StackOverflow using the ag-grid
tag. If nothing seems related, post a new message there. Please do not use GitHub issues to ask questions.
AG Grid is developed by a team of co-located developers in London. If you want to join the team send your application to info@ag-grid.com.
ag-grid-community
is licensed under the MIT license.
ag-grid-enterprise
has a Commercial license.
See the LICENSE file for more info.
If you've made it this far, you may be interested in our latest project: AG Charts - The best React Charting library in the world.
Initially built to power Integrated Charts in AG Grid, we open-sourced this project in 2018. Having seen the steady rise in popularity since then, we have decided to invest in AG Charts with a dedicated Enterprise version (ag-charts-enterprise
) in addition to our continued support of ag-charts-community
.
No vulnerabilities found.