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.
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: 19 Mar 2019 02:39 by ADMIN
Created by: Grinden
Comments: 0
Category: PivotGrid
Type: Feature Request
3
In the RadPivotGrid:
Open the Label Filter dialog on a dimension, don't set anything and press OK, then all items are present and nothing is filtered out as expected.
Open the Label filter again and manually specify that the value must equal "xyz" and click OK then it will exclude every item that doesn't match this. Again, this behaviour is what you'd expect.
If you then open the dialog, and delete the "xyz" from the textbox so that the dialog appears exactly as it did originally, and click OK then you won't see any items in your pivot grid. This is because it is now filtering out anything that doesn't have an empty string as the label. This is not what I'd expect.
To remedy this, you can click on the dimension and see that the Label filter is still ticked in the context menu, and click "Clear filter", but this isn't exactly intuitive. 
I'd like the filter to be cleared when you clear the text in the box. 
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
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: 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. 
 
Unplanned
Last Updated: 14 Dec 2018 11:30 by ADMIN
Completed
Last Updated: 05 Sep 2018 15:51 by Darran
Currently it is only possible to either show all or hide all subtotals.
Unplanned
Last Updated: 12 Jul 2018 08:33 by ADMIN
ADMIN
Created by: Kalin
Comments: 0
Category: PivotGrid
Type: Feature Request
3

			
Unplanned
Last Updated: 26 Apr 2018 15:08 by ADMIN
Completed
Last Updated: 08 Mar 2018 09:10 by ADMIN
The DistinctValuesLimit property is available in our R1 2018 Release.
Unplanned
Last Updated: 07 Feb 2018 10:34 by ADMIN
Unplanned
Last Updated: 12 Dec 2017 12:01 by ADMIN
With the current implementation the top level header only visually appears as one cell, however it stretches the subheader column below (check PivotGrid(Now).png).


Looking the attach file,now the XAML is following:
<pivot:LocalDataSourceProvider.AggregateDescriptions>
                        <pivot:PropertyAggregateDescription PropertyName="AccValue" CustomName="total"/>
                        <pivot:PropertyAggregateDescription PropertyName="IncValue" CustomName="increased"/>
                 </pivot:LocalDataSourceProvider.AggregateDescriptions>

 <pivot:LocalDataSourceProvider.ColumnGroupDescriptions>
                        <pivot:PropertyGroupDescription PropertyName="SystemDeviceCode"/>
                    </pivot:LocalDataSourceProvider.ColumnGroupDescriptions>
the SystemDeviceCode column just use one column ,like the attach "PivotGrid(Now).png",when the text is long ,the first column "Total" is too wide .
I hope like the attach "PivotGrid(desired).PNG",the SystemDeviceCode column can span two columns.
     and the data struct:

 public class DayStruct1
    {
        public string HourNum { get; set; }
        public string SystemDeviceCode { get; set; }
        public double AccValue { get; set; }
        public double IncValue { get; set; }
        public DateTime Date { get; set; }
    }//
Declined
Last Updated: 09 Oct 2017 07:30 by ADMIN
Created by: Yehudah
Comments: 2
Category: PivotGrid
Type: Feature Request
0