Hide Row Numbers
Angular Data Grid
File of interest
The .html template where you added the grid with
The .html template where you added the grid with
<app-deebodata-data-table-component
You simply need to bind the rowNumbers input property of the grid component to false.
This will hide the row numbers in the grid. It will also hide row numbers in grouped rows. Do it with the code below:
<app-deebodata-data-table-component
[rowNumbers]="false"
></app-deebodata-data-table-component>