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..?
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.
RegardsTodor
OK. That works and It is hidden. MeasureDropControl now looks like a white rectangle. How do I change this to my Windows theme I am l already using...?
Also, where is the grid template..?
Hi,
A xamPivotGrid style is included in the Themes folder. Look in the Program Files\Infragistics\NetAdvantage 2010.3\Silverlight DV\Themes folder. There is a resourceDictionary defined for each control in the Office2010Blue theme folder
And I believe that you will need to look for the MeasuresFieldDropAreaControl.
Please let me know if you have further questions.