我在我的 Angular 4 应用程序中使用免费版本的 ag-Grid。
在下面的代码中,我想在构造函数中自动调整网格的大小:
constructor(private modalService: NgbModal) {
this.gridOptions = <GridOptions>{};
const columnDefs = [...];
const rowData = [...];
this.gridOptions.columnDefs = columnDefs;
this.gridOptions.rowData = rowData;
this.gridOptions.api.sizeColumnsToFit();
}
但是在开发人员工具中,我收到以下错误:
错误类型错误:无法读取未定义的属性“sizeColumnsToFit”