Hi,
Its been nearly a year now that I am waiting for Kendo to provide a auto-fit/ resize option. Tried something like
public onDataStateChange(): void {
this.fitColumns();
}
private fitColumns(): void {
this.ngZone.onStable.asObservable().pipe(take(1)).subscribe(() => {
this.grid.autoFitColumns();
});
}
But this doesn't seem to work also. Our business requirement needs us to do the auto resize since we create our grids on the fly.
Any solutions yet?