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

Hide Grouping Header

1 Answer 98 Views
PivotGrid and PivotFieldList
This is a migrated thread and some comments may be shown as answers.
Arun Kumar
Top achievements
Rank 2
Arun Kumar asked on 17 Jun 2014, 09:12 AM
I want to hide top row created by default. How do I do that ?

1 Answer, 1 is accepted

Sort by
0
Accepted
Dess | Tech Support Engineer, Principal
Telerik team
answered on 20 Jun 2014, 07:43 AM
Hello Arun,

Thank you for writing.

You can hide the top most area in the RadPivotGrid as follows:
this.radPivotGrid1.PivotGridElement.AggregateDescriptorsArea.Visibility = ElementVisibility.Collapsed;
this.radPivotGrid1.PivotGridElement.ColumnDescriptorsArea.Visibility = ElementVisibility.Collapsed;
this.radPivotGrid1.PivotGridElement.Margin = new Padding(0, -30, 0, 0);
this.radPivotGrid1.PivotGridElement.VScrollBar.Margin = new Padding(0, 30, 0, 0);

I hope this information helps. Should you have further questions, I would be glad to help.

Regards,
Desislava
Telerik
 
Check out Telerik Analytics, the service which allows developers to discover app usage patterns, analyze user data, log exceptions, solve problems and profile application performance at run time. Watch the videos and start improving your app based on facts, not hunches.
 
Tags
PivotGrid and PivotFieldList
Asked by
Arun Kumar
Top achievements
Rank 2
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or