How Can I add static tooltip for header only in igx grid. I tried adding title ="some toolyip" but it does not workk:
<div class="gridContainer">
<igx-grid #defectdetails [data]="defectsData" [autoGenerate]="false" [rowSelectable]="true" [width]="width" height="256px"
columnWidth="120px" (onRowSelectionChange)="OnDefectSelection($event)" (onDataPreLoad)="loadDefectData()"
(onSortingDone)="OnSortData()" (onFilteringDone)="OnFilterData()" [primaryKey]="'rowid'" [emptyGridMessage]="'No Defects to Display.'" [allowFiltering]="true">
<igx-column header="Pos X" [field]="'PosX'" dataType="number" [filterable]="true" [sortable]="true" [resizable]="true" title="'some Title'"></igx-column>
</igx-grid>
</div>
</div>