SummaryRow: how to get rid of ToolTip

Hi,
I don't want tooltip of Summary row cells, which property i have to set for it.

Thanks
VIvek

tooltip0.zip

1 Reply

AD Administrator Syncfusion Team November 6, 2006 10:23 AM UTC

Hi Vivek,

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.
http://www.syncfusion.com/support/user/uploads/definingsummaries_cs.zip>definingsummaries_cs.zip

Best Regards,
Haneef

Loader.
Up arrow icon