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
1059
Disable/Hide Measure display cell
posted

Is there a way to not add measure on the left corner of the grid. For us only displaying measure in the datasecltors in enough. Is there a way to achieve this..? We don't want users to drop it on the top left corner..?

Parents
No Data
Reply
  • 7922
    Suggested Answer
    posted

    Hi

    The easiest way is to use code below

    pivotGrid.LayoutLoaded += (s, args) =>
    {
        pivotGrid.MeasuresDropControl.Visibility = Visibility.Collapsed;
    };

    This will hide the measure drop area. If you want something more complex you should change the PivotGrid control template.

    Regards
    Todor

     

Children