Hi,
How to remove row from PivotGrid if data is empty or null ? Right now if property is null in Header Row have text '(blank)'
I want have row with different count leve. Right now I can have alway the same numbers of levels.For Example below want to show just two level:
PivotItem.TestDataLevel1 = 'Title 1';
PivotItem.TestDataLevel2 = 'Title 2';
PivotItem.TestDataLevel3 = null;
LocalDataSourceProvider.RowGroupDescriptions.Add(new PropertyGroupDescription { PropertyName = ExpressionMiner.ExtractPropertyName<PivotItem>(val => val.TestDataLevel1 ) });
LocalDataSourceProvider.RowGroupDescriptions.Add(new PropertyGroupDescription { PropertyName = ExpressionMiner.ExtractPropertyName<PivotItem>(val => val.TestDataLevel2 ) });
LocalDataSourceProvider.RowGroupDescriptions.Add(new PropertyGroupDescription { PropertyName = ExpressionMiner.ExtractPropertyName<PivotItem>(val => val.TestDataLevel3 ) });