Unplanned
Last Updated: 23 Feb 2017 14:07 by Yehudah
As you did with PropertyInfoFieldInfo, which expose PropertyInfo property.

This can be very helpful to many custom logic based on the source PropertyInfo.
For example:

private static DisplayAttribute GetDisplayAttribute(QueryableFieldDescription fieldInfo)
{
    return fieldInfo.PropertyInfo.GetCustomAttribute<DisplayAttribute>();
}
Unplanned
Last Updated: 23 Feb 2017 14:07 by Yehudah
Created by: Yehudah
Comments: 0
Category: PivotGrid
Type: Feature Request
0
I have Written behavior to auto-format the AggregateDescription.StringFormat.

Now, I need to list all possible AggregateDescription's, with reference to their DLL.
if (e.Description is LocalAggregateDescription)
{
    (e.Description as LocalAggregateDescription).StringFormat = MyStringFormat;
}
else if (e.Description is QueryableAggregateDescription)
{
    (e.Description as QueryableAggregateDescription).StringFormat = MyStringFormat;
}
else if (e.Description is Other_XYZ_AggregateDescription)
{
    (e.Description as Other_XYZ_AggregateDescription).StringFormat = MyStringFormat;
}

But, if IStringFormattableAggregate was public, I would can write it better:
if (e.Description is IStringFormattableAggregate)
{
    (e.Description as IStringFormattableAggregate).StringFormat = MyStringFormat;
}
Unplanned
Last Updated: 01 Feb 2017 16:51 by ADMIN
ADMIN
Created by: Polya
Comments: 0
Category: PivotGrid
Type: Feature Request
0

			
Unplanned
Last Updated: 24 Nov 2016 11:20 by Yehudah
See the attached image.

Steps to reproduce:
1. I checked the checkboxes 'Product' and 'Price'. The Product field added to row labels, and price to values.
2. Unchecked the 'Price', the price field removed from the pivot.
3. Unchecked the Product, doesn't  remove the products from the pivot.
Unplanned
Last Updated: 24 Nov 2016 11:00 by Yehudah
Unplanned
Last Updated: 03 Jan 2017 21:03 by ADMIN
ADMIN
Created by: Georgi
Comments: 0
Category: PivotGrid
Type: Feature Request
3
 When there are a lot of items, it is quite difficult to find the ones you need in RadPivotFieldList. There could be some way to search within the properties.
Unplanned
Last Updated: 16 Jan 2017 14:44 by ADMIN
Add options for showing items with no data as in Local data provider.
Unplanned
Last Updated: 05 Sep 2019 15:00 by ADMIN
ADMIN
Created by: Georgi
Comments: 5
Category: PivotGrid
Type: Feature Request
2
 Implement: "% of Parent", "% of Parent Row", "% of Parent Column"
Unplanned
Last Updated: 03 Jan 2017 21:17 by ADMIN
ADMIN
Created by: Georgi
Comments: 0
Category: PivotGrid
Type: Feature Request
0
Users should be able to navigate through the elements of RadPivotGrid using a keyboards. For example, moving between cells, collapsing headers with space, etc. 
Unplanned
Last Updated: 19 Mar 2019 02:39 by ADMIN
Created by: Grinden
Comments: 0
Category: PivotGrid
Type: Feature Request
3
In the RadPivotGrid:
Open the Label Filter dialog on a dimension, don't set anything and press OK, then all items are present and nothing is filtered out as expected.
Open the Label filter again and manually specify that the value must equal "xyz" and click OK then it will exclude every item that doesn't match this. Again, this behaviour is what you'd expect.
If you then open the dialog, and delete the "xyz" from the textbox so that the dialog appears exactly as it did originally, and click OK then you won't see any items in your pivot grid. This is because it is now filtering out anything that doesn't have an empty string as the label. This is not what I'd expect.
To remedy this, you can click on the dimension and see that the Label filter is still ticked in the context menu, and click "Clear filter", but this isn't exactly intuitive. 
I'd like the filter to be cleared when you clear the text in the box. 
Unplanned
Last Updated: 03 Aug 2016 14:00 by Lisitsa
Created by: Lisitsa
Comments: 0
Category: PivotGrid
Type: Feature Request
1
Implement sorting by clicking on headers, like in RadGridView.
Unfortunately for Telerik, Infragistics have this feature:
http://help.infragistics.com/Help/Doc/WPF/2015.1/CLR4.0/html/xamPivotGrid_US_Sorting_Data.html
Unplanned
Last Updated: 03 Aug 2016 13:56 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 13:56 by ADMIN
Unplanned
Last Updated: 03 Jan 2017 21:09 by Stephen
ADMIN
Created by: Polya
Comments: 1
Category: PivotGrid
Type: Feature Request
1

			
Unplanned
Last Updated: 03 Jan 2017 21:08 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 13:56 by ADMIN
It happens when you change the distinct values selection several times. The PivotGrid disappears after the exception is thrown.
I managed to reproduce it in the demo by repeating this action around ten times.
Unplanned
Last Updated: 03 Jan 2017 21:03 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 13:59 by ADMIN
Currently the header of that column says "Grand Total" instead of the aggregate name.