Ag Grid Enterprise
ag-grid-enterprise
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
Tables
ag
ag-grid
datagrid
data-grid
datatable
data-table
grid
table
react
angular
Stars
379
Weekly
1.4M
Open issues
5
Bundle
~25 kB
Installation
npm install ag-grid-enterpriseCode example
import { useAgGridEnterprise } from "ag-grid-enterprise";
const rows = [
{ id: 1, name: "Ada", role: "Engineer" },
{ id: 2, name: "Linus", role: "Maintainer" },
];
export function Example() {
const table = useAgGridEnterprise({ data: rows, columns: [{ accessorKey: "name" }, { accessorKey: "role" }] });
return <pre>{JSON.stringify(table, null, 2)}</pre>;
}Pros & cons
Pros
- Actively maintained by Sean Landsman
- 1.4M weekly downloads. Battle tested
- First-class TypeScript definitions
- Commercial licensed
Considerations
- Adds roughly ~25 kB to your bundle
- Needs client-only rendering in SSR frameworks
- Not supported in React Native
- 5 open issues on GitHub