Completed
Last Updated: 24 May 2023 06:50 by ADMIN
Release R2 2023
ADMIN
Created by: Kalin
Comments: 0
Category: PivotGrid
Type: Feature Request
9

			
Completed
Last Updated: 23 May 2023 07:30 by ADMIN
Release R2 2023
When a label filter is applied and there are repeating groups for columns and rows the GetUnderlyingData method does not return the correct items. 
Completed
Last Updated: 09 Mar 2023 08:26 by ADMIN
Release R1 2023 SP1
The TotalFormat of a calculated field can be transferred to its required field when both fields are used as aggregate values.
Completed
Last Updated: 19 Jan 2023 14:50 by ADMIN
ADMIN
Created by: Rosen Vladimirov
Comments: 0
Category: PivotGrid
Type: Feature Request
5
RadPivotGrid is loading all data from OLAP Cube. It should be able to use on demand (lazy loading) pattern, so when a group is expanded, a new query is sent and only required data is taken from the server.
Completed
Last Updated: 17 Nov 2022 06:08 by ADMIN
Release LIB 2022.3.1121 (21 Nov 2022)
If we apply a label GroupFilter to a RowGroupDescription/ColumnGroupDescription (through the GroupFilter property or through the RadPivotFieldList) matching groups from both the rows and columns are filtered out. 
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. 
Completed
Last Updated: 05 Aug 2022 12:11 by ADMIN
Release R3 2022
ADMIN
Created by: Rosen Vladimirov
Comments: 3
Category: PivotGrid
Type: Feature Request
23
Similar to Excel - RadPivotGrid could have an area, where you can select some filter/group descriptions.
Completed
Last Updated: 13 Apr 2022 09:17 by ADMIN
Release LIB 2021.3.1025 (25 Oct 2021)
Created by: LindenauAtSOG
Comments: 12
Category: PivotGrid
Type: Bug Report
4
Bug can be reproduced in PivotGrid => Olap Support in demo application.
Under all main categories in the designer, there is a folder called "Sets" that has the exact same content.

It either is mistakingly placed under each "category" or should be something that sits on top of them in a more global fashion.

Completed
Last Updated: 17 Mar 2022 07:23 by ADMIN
Release LIB 2022.1.321 (21 Mar 2022)
InvalidDataContractException is thrown when serializing the LocalDataSourceProvider with a DataContractSerializer and a calculation (TotalFormat) is applied.
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. 
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;
	}
} 

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.

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)
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.
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.
Completed
Last Updated: 23 Aug 2019 07:29 by ADMIN
Release LIB 2019.2.826 (08/26/2019)
When you apply an average aggregate function (for example via the RadPivotFieldList control) a VerificationException is thrown. The exception message is: "Operation could destabilize the runtime."
1 2