'Why is ag-grid is not showing up even after setting proper height and width

I have set the height and width for grid , but still the grid is not showing up. None of the ag-grid parameters are showing. Attached image for reference.

enter image description here

<ag-grid-angular id="myGrid" class="ag-theme-alpine"
[rowData]="gridOptions.rowData"
   [columnDefs]="gridOptions.columnDefs" [pagination]="true"  [paginationPageSize]="paginationPageSize"
   (gridReady)="onGridReady($event)"  (cellClicked)="onCellClicked($event)"
   [defaultColDef]="defaultColDef" 
   [frameworkComponents]="frameworkComponents" [allowContextMenuWithControlKey]="true"
   [getContextMenuItems]="getContextMenuItems" >
</ag-grid-angular>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source