Angular integration
Install line, peers, styles, and a minimal import for Angular. Live docs demos open in StackBlitz in one click—no local clone required.
Why Simple Table on Angular
Drop a production-ready grid into Angular apps with familiar module or standalone patterns. Keep enterprise features—editing, pinning, nested headers—without pulling in a massive commercial bundle.
Install
Peer expectations: Angular 17+ (standalone components supported)
npm install @simple-table/angularStyles
Import the published stylesheet once in your app entry (or a layout component).
import "@simple-table/angular/styles.css";Minimal import surface
import { SimpleTableComponent } from "@simple-table/angular";
import "@simple-table/angular/styles.css";Documentation demos include Open in StackBlitz so you can run and edit a full Angular project in the browser. Start with the quick-start sandbox below.
Simple Table vs other Angular data grids
An Angular standalone component data grid with virtualization, pinning, grouping, and inline editing—free under MIT, the AG-Grid-Enterprise feature surface without the AG-Grid-Enterprise license.
If you have evaluated any of the libraries below, Simple Table is a drop-in MIT alternative that ships virtualization, pinning, grouping, and inline editing without a Pro license:
- AG Grid Angular alternative
- ngx-datatable alternative
- PrimeNG Table alternative
- Angular Material MatTable alternative
- Kendo UI for Angular Grid alternative
- DevExtreme Angular Grid alternative
FAQ
- Can I use standalone components?
- Yes. Import SimpleTableComponent into a standalone component or NgModule as usual; peers are listed in the Install section.
- Is this the same grid as the React package?
- Yes. Every adapter wraps the same simple-table-core engine, so features like sorting, editing, column APIs, and themes behave consistently. You choose the npm package that matches your framework.
- Where can I run a full example without cloning the repo?
- Use the StackBlitz quick start from this hub, or open documentation demos—many include “Open in StackBlitz” for a runnable project in the browser.
- Is there a deeper guide for this stack?
- Read the stack-specific pillar guide at https://www.simple-table.com/blog/angular-data-grid-simple-table for install context, patterns, and links back to this hub.