Я попытался использовать приведенный ниже код
файл шаблона компонента сетки
<ag-grid-angular #agGrid style="width: 100%; height: 200px;" class="ag-theme-fresh" [gridOptions]="gridOptions"
[animateRows]="animateRow">
</ag-grid-angular>
ts файл компонента сетки
@Component({
selector: "app-my-grid-application",
templateUrl: "./my-grid-application.component.html"
})
export class MyGridApplicationComponent {
private gridOptions: GridOptions;
@Input("animateRow")
animateRow: boolean = false;
constructor() {
this.gridOptions = <GridOptions>{
enableSorting: true
};
this.gridOptions.columnDefs = [
{ headerName: "ID", field: "id", width: 100 },
{ headerName: "Value", field: "value", width: 100 }
];
this.gridOptions.rowData = [{ id: 5, value: 10 }, { id: 10, value: 15 }];
}
}
в моем app.component. html
<app-my-grid-application [animateRow]="true"></app-my-grid-application>
надеюсь, это поможет вам сообщить мне, если возникнет какая-либо проблема
спасибо