AD
Administrator
Syncfusion Team
March 22, 2007 02:08 PM UTC
Hi James,
You can handle the QueryCellStyleInfo event to turn off the Tooltip in Summary Cell. Please try this.
private void gridGroupingControl1_QueryCellStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableCellStyleInfoEventArgs e)
{
if(e.TableCellIdentity.TableCellType==GridTableCellType.SummaryFieldCell)
{
e.Style.CellTipText="";
}
}
Best Regards,
Haneef