Hi Andyzhang,
Greetings from Syncfusion support.
Based on your query we suspect that you want to hide the tooltip of Group caption row in the Grid. You can achieve your requirement by using dataBound event of Grid as demonstrated in the below code snippet,
App.component.ts
|
export class AppComponent {
ngOnInit(): void {
this.data = inventoryData;
}
dataBound(args){
var len=this.grid.getContentTable().querySelectorAll('.e-groupcaption').length;
for(var i=0;i<len;i++){
this.grid.getContentTable().querySelectorAll('.e-groupcaption')[i].removeAttribute('title');
}
}
} |
Regards,
Shalini M.