AD
Administrator
Syncfusion Team
January 18, 2007 10:52 AM UTC
Hi Mohan,
Thanks for being patience.
You can handle the QueryCellStyleInfo event and customize the summary value for the required group. Please refer to the following code snippet for more details.
>>>>>>>>>> Code Snippet <<<<<<<<<<<<
//QueryCellStyleInfo event
if (e.TableCellIdentity.TableCellType == GridTableCellType.SummaryFieldCell)
{
Element el = e.TableCellIdentity.DisplayElement;
if (el != null)
{
Group g = el.ParentGroup;
if (g.Category != null && g.Category.ToString() == "xyz")
{
===
}
}
}
>>>>>>>>>>>>>>>><<<<<<<<<<<<<<<<<<
Kindly let us know if you need any further assistance.
Have a nice day.
Best regards,
Madhan