Unplanned
Last Updated: 30 Dec 2021 10:42 by ADMIN
Currently, changing the visibility of the Expand/Collapse icon, via style, will apply it to all of the elements which are of type PivotGroupHeader.  
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: 14 Dec 2021 15:22 by ADMIN
Currently - any string can be typed in the combobox which is displayed as the editor for the label filters. The input should be limited to only the values present in the ItemsSource collection. 
Completed
Last Updated: 14 Dec 2021 15:22 by ADMIN
Release LIB 2021.3.1004 (4 Oct 2021)
Created by: LindenauAtSOG
Comments: 10
Category: PivotGrid
Type: Bug Report
4

Bug can be observed in Pivot Grid => Olap Sorting example in  the most recent demo.

Sadly i do not know what this menu is called in english (and the demo cannot change language) so here is a screenshot



Set it to 'Equal' 'Lisa Cai'




If you hit ok and refresh, all values are gone.
Weirdly if you change it to not equal, you still get zero results



Completed
Last Updated: 18 Oct 2021 14:10 by ADMIN
Release LIB 2021.3.1025 (25 Oct 2021)
Created by: Grinden
Comments: 0
Category: PivotGrid
Type: Bug Report
2
I've been investigating a memory leak in my application and I've noticed that there are a lot of TypeBuilders and RuntimeTypes hanging around, and this number increases over time. Investigation into this shows that they are being held onto by the ModuleBuilder instance in the static instance of the Telerik PivotClassFactory.
Completed
Last Updated: 23 Aug 2021 12:25 by ADMIN
Release LIB 2021.2.823 (23 Aug 2021)
The sort order of the aggregated values is wrong when the sorted field contains null values. To reproduce this the null values should be allowed by setting the IgnoreNullValues property of the associated PropertyAggregateDescription object to False.
Completed
Last Updated: 15 Apr 2021 12:11 by ADMIN
Release LIB 2021.1.419 (19/04/2021)

If you open a label filter dialog from the RadPivotFieldList control for a DateTime field and choose the "is between" or "is not between" operator from the combobox, you will notice that the RadDateTimePicker controls used to filter the dates very small. In this case, the empty value placeholder is clipped and if you choose any dates they are clipped too.

To work this around, you can increase the dialog's width when it opens. You can do this with the RoutedDialogEvents.RequestDialog event.

public MainWindow()
{
	InitializeComponent();
	pivotFieldList.AddHandler(RoutedDialogEvents.RequestDialog, new EventHandler<DialogHostingRequestEventArgs>(this.OnDialogHostRequested), true);
}

private void OnDialogHostRequested(object sender, DialogHostingRequestEventArgs e)
{
	var labelDialog = e.DialogInfo.Content as LabelFilterDialog;
	if (labelDialog != null)
	{
		var w = labelDialog.ParentOfType<RadWindow>();
		w.Width = 500;
	}
} 

Unplanned
Last Updated: 29 Mar 2021 06:36 by ADMIN
Currently, the dates in the filter dialogs of RadPivotList are using invariant culture format. Allow the format to respect the currently applied application or data provider culture.
Completed
Last Updated: 12 Feb 2021 07:01 by ADMIN
Release LIB 2021.1.215 (2/15/2021)
Created by: LindenauAtSOG
Comments: 3
Category: PivotGrid
Type: Bug Report
2

It seems that the option to turn of sums has no effect for hirachie columns.
No matter if this option is checked or not, they do not disappear.

It works on regular columns.

Unplanned
Last Updated: 19 Jan 2021 14:50 by LindenauAtSOG
GroupNode is the type of the RowGroup and ColumnGroup properties of the CellAggregateValue class. Its Group property is useful to construct a new Coordinate object and use it in the GetAggregateResult() method. However, currently the GroupNode class is internal, therefore you cannot access its Group property. Allow access to the GroupNode class, or provide another way to access its Group. 
Unplanned
Last Updated: 04 Jan 2021 12:00 by ADMIN
Allow creating a custom TotalFormat which can be used to format the cell values.

A sample scenario where this will be useful is if you want to show both the absolute and percentage value of the cells. 
Unplanned
Last Updated: 20 Oct 2020 09:41 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: PivotGrid
Type: Feature Request
2
Add the ability to specify the start and end for the grouping. This functionality is available in MS Excel.
Unplanned
Last Updated: 24 Jul 2020 08:31 by ADMIN
Completed
Last Updated: 18 Mar 2020 13:01 by ADMIN
Release LIB 2020.1.323 (03/23/2020)
This is the string shown in the drop down of the property descriptions shown in the RadPivotFieldList control. The option that sorts the values from Z to A is called "Classer de A à Z", but it should be "Classer de Z à A".
Completed
Last Updated: 04 Feb 2020 12:22 by ADMIN
Release LIB 2020.1.210 (2/10/2020)
Unplanned
Last Updated: 21 Jan 2020 13:17 by ADMIN
Currently the LocalDataSourceProvider has such support and we can consider introducing the same functionality in the QueryableDataProvider.
Completed
Last Updated: 06 Jan 2020 12:07 by ADMIN
ADMIN
Created by: Rosen Vladimirov
Comments: 2
Category: PivotGrid
Type: Feature Request
4
Currently when you have null value in a cell, RadPivotGrid considers it as 0. This way when you apply some Aggregate Functions, like Average for example, the result may not be as expected. For example if you have the cells 10, null, 10 RadPivotGrid will show as total the value 6.67 (for Average function). You should be able to exclude null values, so the value 10 will be shown as average for the mentioned cells.

Available in the 2016 R2 release.
Unplanned
Last Updated: 03 Dec 2019 17:31 by aegir
Allow filtering through filtering icons in the headers as in the RadGridView control and the WinForms RadPivotGrid.
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"
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.