How to remove summary tooltip for summary columns

Hi,

I want to remove the summary details display in the tooltip when mouse is move over the summary cell.
please tell me what is the property to remove this

1 Reply

HA haneefm Syncfusion Team March 29, 2007 02:32 PM UTC

Hi Harshad,

To remove the tooltip from the summary cell, you need to handle the QueryCellStyleInfo event and set the Style.CellTipText property to String.Empty for all summary filed cells. Below is a code snippet

private void gridGroupingControl1_QueryCellStyleInfo(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableCellStyleInfoEventArgs e)
{
if(e.TableCellIdentity.TableCellType==GridTableCellType.SummaryFieldCell)
{
e.Style.CellTipText="";
}
}

Please refer to the attached sample for more details.
RemoveToolTipSummarySample

Best Regards,
Haneef

Loader.
Up arrow icon