Angular
Fundamentals of ag-Grid with Angular: Data

Value Getter

Goals

  • The valueGetter property in a column definition enables us to define an expression or function for accessing data for the specified column.
  • The valueGetter function accepts the ValueGetterParams object, which among other things, provides us with the data for each row in the grid.
  • We can return a string from the valueGetter function that is used for each row in the specified column.
  • Value getters are a method for customizing the formatting and display of data in the grid.
 

I finished! On to the next chapter