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: 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: 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: 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: 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: 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: 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: 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: 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: 13 Feb 2019 12:57 by ADMIN
Completed
Last Updated: 04 Feb 2020 12:22 by ADMIN
Release LIB 2020.1.210 (2/10/2020)
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: 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: 09 Sep 2015 09:08 by ADMIN
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.
1 2