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
Completed
Last Updated: 03 Sep 2019 12:39 by ADMIN
Release LIB 2019.2.729 (7/29/2019)
ADMIN
Created by: Georgi
Comments: 0
Category: PivotGrid
Type: Feature Request
1
Hour, minute, second.
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.
Completed
Last Updated: 20 Dec 2021 12:54 by ADMIN
Release R1 2022
ADMIN
Created by: Georgi
Comments: 6
Category: PivotGrid
Type: Feature Request
3
add a textbox which allows users to find matching distinc values when using report filters. Very valuable if you are dealing with many distinct values. 
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. 
Completed
Last Updated: 25 Oct 2016 14:02 by ADMIN
Applying "% Difference From" total format to a calculated description formats the calculated data in RadPivotGrid as double, instead of as a percent.

Available with the R3 2016 SP1 release.
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. 
Completed
Last Updated: 23 Jan 2017 06:58 by Brett
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
Completed
Last Updated: 08 Feb 2016 10:58 by ADMIN
Available in LIB version 2015.2.914, it will be also available in the 2015 Q3.
Unplanned
Last Updated: 03 Aug 2016 13:56 by ADMIN
Unplanned
Last Updated: 03 Aug 2016 13:56 by ADMIN
Completed
Last Updated: 21 Sep 2022 10:59 by ADMIN
Release LIB 2022.3.926 (26 Sep 2022)
Created by: Grinden
Comments: 0
Category: PivotGrid
Type: Feature Request
2
If you apply a number format to a Count value in the RadPivotGrid, then it is ignored. The reason given is that count is always an integer, so it shouldn't need formatting. However, I'd like to be able to apply group separators. It's much easier to read 100,000,000 than 100000000.