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.
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. 
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: 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.
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".
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.
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: 21 Aug 2019 13:41 by ADMIN
Created by: Dinko
Comments: 0
Category: PivotGrid
Type: Feature Request
1
All of the functionalities inside the column headers are located in the RadPivotFieldList. Add the same behavior in the RadPivotGrid.
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."
Unplanned
Last Updated: 10 Jun 2019 09:33 by ADMIN
Created by: Martin Ivanov
Comments: 0
Category: PivotGrid
Type: Feature Request
8

Add support for frozen columns. Like in RadGridView or Excel. This way you can scroll the data horizontally while part of the columns are frozen and you can always see them.

We can also consider adding frozen rows like in RadGridView or Excel.

Unplanned
Last Updated: 06 Jun 2019 14:05 by ADMIN
When overriden in a derived class the GetAllNames method receives an empty IEnumerable in the "parentGroupNames" parameter.
Unplanned
Last Updated: 12 Feb 2019 09:57 by ADMIN
 Create search functionality in the fields section of the RadPivotFieldList. 
Unplanned
Last Updated: 29 Jan 2019 14:58 by ADMIN
Add filtering support for the aggregate descriptions (PropertyAggregateDescription).

Currently, there is such feature for the row and column group descriptions.
https://docs.telerik.com/devtools/wpf/controls/radpivotgrid/features/localdatasourceprovider/filtering
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);
}
Unplanned
Last Updated: 14 Dec 2018 11:30 by ADMIN
Completed
Last Updated: 13 Feb 2019 12:57 by ADMIN