Angular Grid | Get Started with ag-Grid and Angular
ag-Grid is the industry standard for Angular Enterprise Applications. Developers using ag-Grid are building applications that would not be possible if ag-Grid did not exist.
Getting Started
Below we walk through the necessary steps to add ag-Grid (both Community and Enterprise are covered) to an Angular project and configure some grid features. In particular, we will go through the following steps:
Add ag-Grid to Your Project
For the purposes of this tutorial, we are going to scaffold an Angular app with angular CLI. Don't worry if your project has a different configuration. ag-Grid and its Angular wrapper are distributed as NPM packages, which should work with any common Angular project module bundler setup. Let's follow the Angular CLI instructions - run the following in your terminal:
npm install -g @angular/cli
ng new my-app --style scss --routing false
cd my-app
ng serve
--style scss
to the app scaffolding command so that we may customize the grid theme look through Sass variables.If everything goes well, ng serve
has started the web server. You can open your app at localhost:4200.
As a next step, let's add the ag-Grid NPM packages. run the following command in my-app
(you may need a new instance of the terminal):
After a few seconds of waiting, you should be good to go. Let's get to the actual coding! As a first step, let's add the ag-Grid Angular module to our app module (src/app/app.module.ts
):
withComponents
call is necessary for the grid to be able to use Angular components as cells / headers - you can ignore it for now.The next step is to add the ag-Grid styles - import them in styles.scss
:
The code above imports the grid "structure" stylesheet (ag-grid.css
), and one of the available grid themes: (ag-theme-balham.css
).
The grid ships several different themes; pick one that matches your project design. You can customize it further with Sass variables, a technique which we will cover further down the road.
Next, let's declare the basic grid configuration. Edit src/app.component.ts
:
The code above presents two essential configuration properties of the grid - the column definitions (columnDefs
) and the data (rowData
). In our case, the column definitions contain three columns;
each column entry specifies the header label and the data field to be displayed in the body of the table.
Finally, let's add the component definition to our template. Edit app/app.component.html
and remove the scaffold code:
This is the ag-grid component definition, with two property bindings - rowData
and columnDefs
. The component also accepts the standard DOM style
and class
.
We have set the class to ag-theme-balham
, which defines the grid theme.
As you may have already noticed, the CSS class matches the name of CSS file we imported earlier.
If everything works as expected, you should see a simple grid like the one on the screenshot:

Enable Sorting And Filtering
So far, so good. But wouldn't it be nice to be able to sort the data to help us see
which car is the least/most expensive? Well, enabling sorting in ag-Grid is actually
quite simple - all you need to do is set the sortable
property to each
column you want to be able to sort by.
After adding the property, you should be able to sort the grid by clicking on the column headers. Clicking on a header toggles through ascending, descending and no-sort.
Our application doesn't have too many rows, so it's fairly easy to find data. But it's easy to imagine how a real-world application may have hundreds (or even hundreds of thousands!) or rows, with many columns. In a data set like this filtering is your friend.
As with sorting, enabling filtering is as easy as setting the filter
property:
With this property set, the grid will display a small column menu icon when you hover the header. Pressing it will display a popup with filtering UI which lets you choose the kind of filter and the text that you want to filter by.

Fetch Remote Data
Displaying hard-coded data in JavaScript is not going to get us very far. In the real world, most of the time, we are dealing with data that resides on a remote server. Thanks to Angular, implementing this is actually quite simple.
Notice that the actual data fetching is performed outside of the grid component - We are using Angular's HttpClient and an async pipe. As a first step, let's add the HttpModule
to our app module:
Now, let's remove the hard-coded data and fetch one from a remote server. Edit the src/app.component.ts
to this:
The above code turns the rowData
from a hard-coded array to an Observable
. For the grid to work with it, we need to add an async pipe to the property:
The remote data is the same as the one we initially had, so you should not notice any actual changes to the grid. However, you will see an additional HTTP request performed if you open your developer tools.
Enable Selection
Being a programmer is a hectic job. Just when we thought that we are done with our assignment, the manager shows up with a fresh set of requirements! It turned out that we need to allow the user to select certain rows from the grid and to mark them as flagged in the system. We will leave the flag toggle state and persistence to the backend team. On our side, we should enable the selection and, afterwards, to obtain the selected records and pass them with an API call to a remote service endpoint.
Fortunately, the above task is quite simple with ag-Grid. As you may have already guessed, it is just a matter of adding and changing couple of properties. Edit src/app.component.ts
first:
Next, let's enable multiple row selection, so that the user can pick many rows:
[]
, the
assignment will pass the attribute value as a string, which is fine for our purposes.Great! Now the first column contains a checkbox that, when clicked, selects the row. The only thing we have to add is a button that gets the selected data and sends it to the server. To do this, we are going to use the ag-Grid API - we will access it through the component instance.
Now let's make the instance accessible in our component:
The only thing we have to add is a button that gets the selected data and sends it to the server. To do this, we need the following change:
Well, we cheated a bit. Calling alert
is not exactly a call to our backend.
Hopefully you will forgive us this shortcut for the sake of keeping the article short and simple. Of course, you can substitute that bit with a real-world application logic after you are done with the tutorial.
Grouping
In addition to filtering and sorting, grouping is another effective way for the user to make sense out of large amounts of data. In our case, the data is not that much. Let's switch to a slightly larger data set:
Afterwards, let's enable the enterprise features of ag-grid. Install the additional package:
Then, add the import to app.module.ts
:
If everything is ok, you should see a message in the console that tells you there is no enterprise license key. You can ignore the message as we are trialing. In addition to that, the grid got a few UI improvements - a custom context menu and fancier column menu popup - feel free to look around:

Now, let's enable grouping! Add an autoGroupColumnDef
property and change the columnDefs
to the following:
Add the the autoGroupColumnDef
property to the template too:
There we go! The grid now groups the data by make
, while listing the model
field value when expanded.
Notice that grouping works with checkboxes as well - the groupSelectsChildren
property adds a group-level checkbox that selects/deselects all items in the group.
Customize the Theme Look
The last thing which we are going to do is to change the grid look and feel by modifying some of the theme's Sass variables.
By default, ag-Grid ships a set of pre-built theme stylesheets. If we want to tweak the colors and the fonts of theme, we should add a Sass preprocessor to our project, override the theme variable values, and refer the ag-grid Sass files instead of the pre-built stylesheets so that the variable overrides are applied.
Thankfully, Angular CLI has done most of the heavy lifting for us. Remember that we bootstrapped our project with --style scss
? Everything we need to do now is to change the paths in src/styles.scss
:
Let's do something simpler, though. We can override the alternating row background color to grayish blue. Add the following line:
If everything is configured correctly, the second row of the grid will get slightly darker. Congratulations! You now know now bend the grid look to your will - there are a few dozens more Sass variables that let you control the font family and size, border color, header background color and even the amount of spacing in the cells and columns. The full Sass variable list is available in the themes documentation section.
Summary
With this Angular grid tutorial, we managed to accomplish a lot. Starting from the humble beginnings of a three row / column setup, we now have a grid that supports sorting, filtering, binding to remote data, selection and even grouping! While doing so, we learned how to configure the grid, how to access its API object, and how to change the styling of the component.
Want to know more?
Want to see some full examples of customising ag-Grid using Angular components? See this blog written by Max Koretskyi (aka Angular in Depth Wizard) Learn to customize Angular grid in less than 10 minutes.
A full working examples of ag-Grid and Angular can be found in Github, illustrating (amongst others) rich grids, filtering with angular components and master/detail.