Hello Team,
On Tree-Grid version 18.1.43 I get column property in data in <ng-template>
Below is example which I used.
<ng-template #templateIconText let-data>
<span class="font-weight-bold">
<i *ngIf="data.column.field+'_ICON'" [style.font-size.px]="16"
[ngClass]="storageService.getClassName('icon',data[data.column.field+'_ICON'])">]
</i> {{data[data.column.field]}}</span>
</ng-template>
But when I updated tree-grid to latest version than column property not exist in data. So please help me how manage this problem.