This is a migrated thread and some comments may be shown as answers.

Format datetime GroupElement

1 Answer 50 Views
PivotGrid and PivotFieldList
This is a migrated thread and some comments may be shown as answers.
manuele
Top achievements
Rank 1
manuele asked on 24 Mar 2015, 04:01 PM
Hi, 
     i would like to display only date in my GroupElements that contains a DateTime filed

Is it possible?

Thanks in advance

1 Answer, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 27 Mar 2015, 07:20 AM
Hi Manuele,

Thank you for writing.

You can use the GroupElementFormatting event to change the text of the group elements:
void radPivotGrid1_GroupElementFormatting(object sender, PivotGroupElementEventArgs e)
{
    e.GroupElement.Text = "test";
}

Please let me know if there is something else I can help you with. 
 
Regards,
Dimitar
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
Tags
PivotGrid and PivotFieldList
Asked by
manuele
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Share this question
or