Completed
Last Updated: 03 Jan 2019 08:11 by ADMIN

Scheduled for:
The fix for this issue will be included in R1 2019, scheduled for the mid of January 2019. 
 
Completed
Last Updated: 04 Feb 2020 12:22 by ADMIN
Release LIB 2020.1.210 (2/10/2020)
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: 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: 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: 06 Jun 2016 13:22 by ADMIN
ADMIN
Created by: Polya
Comments: 0
Category: PivotGrid
Type: Bug Report
2
Available in LIB version 2016.2.606, it will be also available in the 2016 R2 SP1 release.
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 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: 04 Aug 2014 06:13 by ADMIN
ADMIN
Created by: Rosen Vladimirov
Comments: 0
Category: PivotGrid
Type: Bug Report
1
In OLAP you are able to define ragged hierarchies. In a ragged hierarchy, the logical parent member of at least one member is not in the level immediately above the member. This can cause branches of the hierarchy to descend to different levels. RadPivotGrid doesn't show them correctly.
Completed
Last Updated: 09 Sep 2015 09:08 by ADMIN
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.
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."
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: 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: 18 May 2015 14:53 by ADMIN
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.
Completed
Last Updated: 13 Feb 2019 12:57 by ADMIN
Completed
Last Updated: 22 Feb 2019 20:30 by ADMIN
Setting the Expanded property of the GroupsExpandBehavior assigned to the RowGroupsExpandBehavior property of RadPivotGrid to True, and the RowSubTotalsPosition to None, leads to an error. 

To work this around set the RowSubTotalsPosition to Top. 

Or set the IsExpanded property of the corresponding PivotGroupHeader controls manually.

public MainWindow()
{
InitializeComponent();

// the Opacity is used to avoid the flicker that appears because the groups are rendered just before the collapse logic kicks-in.
this.pivotGrid.Opacity = 0;
this.pivotGrid.Loaded += PivotGrid_Loaded;            
}

private void PivotGrid_Loaded(object sender, RoutedEventArgs e)
{
Dispatcher.BeginInvoke(new Action(() => { 
var headers = this.pivotGrid.ChildrenOfType<PivotGroupHeader>();
foreach (var header in headers)
{
header.IsExpanded = false;
}
this.pivotGrid.Opacity = 1;
}), (DispatcherPriority)3);
}
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".
1 2