Completed
Last Updated: 26 Jul 2019 15:08 by ADMIN
Release LIB 2019.2.729 (7/29/2019)
ADMIN
Created by: Polya
Comments: 6
Category: PivotGrid
Type: Feature Request
6

			
Completed
Last Updated: 26 Jul 2019 15:07 by ADMIN
Release LIB 2019.2.729 (7/29/2019)
Add support for Hours/Minutes/Seconds steps. Also, add a DayNumber option.
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: 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: 05 Sep 2018 15:51 by Darran
Currently it is only possible to either show all or hide all subtotals.
Completed
Last Updated: 08 Mar 2018 09:10 by ADMIN
The DistinctValuesLimit property is available in our R1 2018 Release.
Completed
Last Updated: 23 Jan 2017 06:58 by Brett
Completed
Last Updated: 23 Jan 2017 06:54 by Kasim
ADMIN
Created by: Telerik Admin
Comments: 5
Category: PivotGrid
Type: Feature Request
21
Implement functionality to show a break down of items that aggreagate to current cell.

Available in the 2017 R1 Release (2017.1.117).
For more reference you can check the following help article: http://docs.telerik.com/devtools/wpf/controls/radpivotgrid/features/localdatasourceprovider/drilldown
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: 14 Sep 2016 13:06 by jose
ADMIN
Created by: Rosen Vladimirov
Comments: 12
Category: PivotGrid
Type: Feature Request
29
Users should be able to select individual or multiple cells of RadPivotGrid.

Available in the 2016 R3 Release.
Please take a look at our help article for more information: 
http://docs.telerik.com/devtools/wpf/controls/radpivotgrid/features/selection
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: 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: 15 Jul 2015 09:50 by ADMIN
Completed
Last Updated: 18 May 2015 14:53 by ADMIN
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: 24 Mar 2014 08:40 by ADMIN
I would like RadPivotGrid to sort the dates defined in OLAP Cube as dates, for example:
-Week 1 -Week 2 -Week 12   Instead of the current sorting: -Week 1 -Week 12 -Week 2
1 2