I have already set [width]="auto" I still see "..." ellipsis at the end of my string, I don't want to see ellipsis at the end of the string, as when I load data in the igx-grid initially, it do not properly adjust the column width, as I refresh the grid this problem is resolved.Please help
<igx-column *ngFor="let col of gridColumns" [field]="col.field" [header]="col.header" [sortable]="true"
[hidden]="col.hidden" [pinned]="col.pinned" [exportExcel]="true" [resizable]="true"
[width]="'auto'" [cellClasses] = "cellClasses"
[hasSummary]="isTotalsSummaryRequired(col.field)"
[summaries]="isTotalsSummaryRequired(col.field) ? totalSummary : null">
</igx-column>
Initially it looks:after refreshing:
Thank you so much for the solution.