Reputation: 619
I am new to Ag-Grid Angular, I have created the agGrid table and set width: 800px and height: 500px, but the table is aligned in the left side. Can anyone tell me how to center align tables.
Upvotes: 0
Views: 161
Reputation: 129
Add margin: auto
in style
attribute of ag-grid-angular
.
<ag-grid-angular style="width: 500px; height: 200px; margin: auto;" class="ag-theme-alpine" [rowData]="rowData" [columnDefs]="columnDefs">
</ag-grid-angular>
Upvotes: 1