Turning off tooltips for summary row captions

Hi, Is there an option for completely turning off the summary row "tooltips" e.g. "Count=n", etc. I''m sure there''s a simple boolean setting I have just not spotted. Thanks in advance, Jason Southgate.

1 Reply

AD Administrator Syncfusion Team December 29, 2004 08:59 AM UTC

There is no property setting, but you can handle QueryCellStyleInfo and set the tip empty there for summary cells.
private void gridGroupingControl1_QueryCellStyleInfo(object sender, GridTableCellStyleInfoEventArgs e)
{
	if (e.TableCellIdentity.TableCellType == GridTableCellType.GroupCaptionSummaryCell
		|| e.TableCellIdentity.TableCellType == GridTableCellType.AnySummaryCell)
		e.Style.CellTipText = "";
}

Loader.
Up arrow icon