Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1750
Can I hide pivotGrid areas ?
posted

Hi,

 

Can I hide XamPivotGrid areas?

p.e. how could I hide RowArea?

 

Regards,

Dimitris

Parents
No Data
Reply
  • 7922
    Verified Answer
    posted

    Hi

    There is properties which expose the controls in different areas of pivot grid. Below is a list of them. You can set thier Visibility property to collapsed to hide them.

     xamPivotGrid.RowsDropControl.Visibility = Visibility.Collapsed;
     xamPivotGrid.ColumnsDropControl.Visibility = Visibility.Collapsed;
     xamPivotGrid.FiltersDropControl.Visibility = Visibility.Collapsed;
     xamPivotGrid.MeasuresDropControl.Visibility = Visibility.Collapsed;

    If you want to change the layout of pivot (position of diferent areas), then you should apply new cotrol template with layout within it.

    Regards
    Todor

Children