Hello,
I am about to end a WPF pivot but I still neeed one thing. In the code below you can see what I have already done but I would like the column "Description" to appear right where it is in the RadPivotGrid but I don't want it to be a Aggregate field. Now when the RadPivotGrid loads the data I can see "1" for every row in the column "Description" instead of the text. How should I define this field?
Thanks.
I am about to end a WPF pivot but I still neeed one thing. In the code below you can see what I have already done but I would like the column "Description" to appear right where it is in the RadPivotGrid but I don't want it to be a Aggregate field. Now when the RadPivotGrid loads the data I can see "1" for every row in the column "Description" instead of the text. How should I define this field?
Thanks.
<pivot:LocalDataSourceProvider x:Key="dataProvider"> <pivot:LocalDataSourceProvider.RowGroupDescriptions> <pivot:PropertyGroupDescription PropertyName="Type" /> <pivot:PropertyGroupDescription PropertyName="Type2" /> </pivot:LocalDataSourceProvider.RowGroupDescriptions> <pivot:LocalDataSourceProvider.AggregateDescriptions> <pivot:PropertyAggregateDescription PropertyName="Description" /> <pivot:PropertyAggregateDescription PropertyName="InitialDate" /> <pivot:PropertyAggregateDescription PropertyName="Price" /> <pivot:PropertyAggregateDescription PropertyName="Units" /> </pivot:LocalDataSourceProvider.AggregateDescriptions></pivot:LocalDataSourceProvider>