I'm trying to run the example project of ag-grid but getting the following exception:
Can't bind to 'gridOptions' since it isn't a known property of 'ag-grid-angular'
Code:
<div style="width: 200px;">
<ag-grid-angular #agGrid style="width: 100%; height: 200px;"
[gridOptions]="gridOptions" class="ag-fresh">
</ag-grid-angular>
</div>
It says that there isn't such a prop as 'gridOptions' on ag-grid-angular. It's weird since it comes from the official website of ag-grid.
Any help will be profoundly appreciated!