Unplanned
Last Updated: 15 Jan 2025 09:35 by Mattia

The Expand/Collapse icon of the PivotGrid is always a font one. I am using SVG icons in my app and I don't see the any icon in the toggle button.

===

ADMIN EDIT

===

A workaround for the time being is to register the Font icons stylesheet even if you are using SVG icons.

Unplanned
Last Updated: 10 Jan 2025 10:13 by Ho

When using local data binding, all defined PivotGrid measures are checked by default and render in the Grid.

Please provide the ability to define measures, which are not checked and visible in the Grid area by default.

Unplanned
Last Updated: 09 Jan 2025 12:38 by ADMIN
Created by: Thang Cam
Comments: 0
Category: PivotGrid
Type: Feature Request
1
I want to open a modal dialog to show more detail when the user clicks on a cell in the Pivot Table. I am developing the Pivot which the user can click on the cell and will generate the Grid Table based on the category which the cell currently is.
Unplanned
Last Updated: 21 Nov 2024 13:26 by Federico

I had already tried using reflection via dataTemplate to access the ColumnGroup and RowGroup properties. It would be nice if in future versions, if possible, these were accessible directly and without having to use reflection for efficiency reasons. Expose the current field as well.

In addition to this, it would be convenient to know which row and column they refer to, in order to know which field of the Pivot dataset relates to the calculation performed, and apply custom logic to them.

In summary, expose: ColumnGroup, RowGroup, and the current field.

Completed
Last Updated: 14 Nov 2024 09:28 by ADMIN
Release 7.0.0
Created by: Mate
Comments: 0
Category: PivotGrid
Type: Bug Report
1
In the PivotGrid there are two "GRAND TOTAL" labels. When using localization only the one on the row is translated. The column Grand total label is not translated.
Completed
Last Updated: 14 Nov 2024 09:27 by ADMIN
Release 7.0.0

I am binding the PivorGrid to local data and I am validating that the list contains some records. However, the PivotGrid appears empty. It looks like if the data arrives after PivotGrid initializes, the component does not display it.

Reproduction: https://blazorrepl.telerik.com/GnYDuvFP13H5RQwk31.

===

ADMIN EDIT

===

A possible option to handle the scenario for the time being is to ensure the PivotGrid initializes only when the data is available. For that purpose, you can conditionally render the component based on the data count. Optionally, you can show a LoaderContainer while the data is being fetched.

Here is an example that showcases the approach: https://blazorrepl.telerik.com/cdujObbF15YVdqvR54.
Completed
Last Updated: 14 Nov 2024 09:27 by ADMIN
Release 7.0.0

The component struggles to update Local data source when it changes. I have bound it to a value, but when that value changes it is not reflected in the UI.

The issue occurs when you update the data with an entirely new collection. Calling Rebind afterwards does not help either.

Reproduction: https://blazorrepl.telerik.com/QdvFEDkq548ianYG37.

===

ADMIN EDIT

===

A possible workaround for the time being is to dispose and re-initialize the component when the new data arrives. Here is an example: https://blazorrepl.telerik.com/cHFlaNOg49AjRPUl19.

Unplanned
Last Updated: 30 Oct 2024 12:16 by Andreas
Created by: Andreas
Comments: 0
Category: PivotGrid
Type: Feature Request
3

Hello,

in the WPF Pivot component I created custom calculated fields. Please expose a similar feature in the Blazor PivotGrid.

https://docs.telerik.com/devtools/wpf/controls/radpivotgrid/features/queryabledataprovider/queryable-calc-fields

var OeeA = new OeeA_BerechnetesFeld(); //Telerik.Pivot.Core.CalculatedField
OeeA.Name = "OEE A";
DataSource.CalculatedFields.Add(OeeA); // DataSource is the LocalDataSourceProvider

DataSource.AggregateDescriptions.Add(new CalculatedAggregateDescription { CalculatedFieldName = "OEE A", StringFormat = "#.#0" });


Declined
Last Updated: 25 Sep 2024 08:39 by ADMIN
Created by: Eric
Comments: 2
Category: PivotGrid
Type: Feature Request
2

The current privot grid is a good start, but it is missing some key features.

  1. Being able to resize columns
  2. Have custom column and row header/footers
  3. Export to excel

 

Declined
Last Updated: 16 Sep 2024 10:19 by ADMIN
Created by: Stefan
Comments: 1
Category: PivotGrid
Type: Feature Request
1

hello

please add support for bind pivotgrid to datatable or expando objects (local mode)

Unplanned
Last Updated: 09 Aug 2024 05:34 by Tung
Created by: Tung
Comments: 0
Category: PivotGrid
Type: Feature Request
2
Currently, the PivotGrid data can only be sorted within the PivotGrid configurator.
Unplanned
Last Updated: 13 Sep 2023 10:55 by ADMIN
I want to keep the standard numeric values in the cells but I also want to show a separate column to display the cell values in percent of the column total. Similar to the PercentOfColumnTotal option in Ajax PivotGrid.
Completed
Last Updated: 13 Jul 2023 07:54 by ADMIN
Release 4.4.0 (07/19/2023) (R3 PI1)
Created by: Philip
Comments: 0
Category: PivotGrid
Type: Feature Request
4
I'd like to be able to set width to the columns to ensure the data inside them will be visible. Similar to https://docs.telerik.com/kendo-ui/api/javascript/ui/pivotgrid/configuration/columnwidth.
Completed
Last Updated: 27 Jun 2023 14:18 by ADMIN
Created by: Philip
Comments: 5
Category: PivotGrid
Type: Feature Request
6

Hello

Just testing the new PivotGrid and a few features seem missing which may be critical and I cannot see an easy way to customise via templates or the like.
Apologies in advance if I have just missed it in the documentation or my understanding.

In my opinion, the main purpose a developer would put a PivotGrid into a web application;

  • To simplify data "slicing and dicing" for users not comfortable with tools such as Excel/PowerBI, and reduce the need to export to Excel.
  • To synchronise a pivotGrid view with other components/controls and/or charts on the page

 

Critical

  1. No width parameter: This seems quite critical for general formatting purposes
  2. No mouse hover: Considering there is no width parameter, then there should at least a mouse hover so that the user can hover to see content which has been cut-off due to insufficient width (like the TelerikGrid).
  3. Defer Layout Update: By default the telerik PivotGrid is always deferring the layout change. Usually on PivotGrids (Excel / PowerBI) there is a tick-box to allow the user to choose. For performant pivot tables, there is no need to defer the layout allowing for quick anaytics.
  4. No "Title" attribute or alias for xmla fields: There is no property to rename fields in the xmla dataset, so the user needs to see the full [Table].[ColumnName] attributes in its raw form (which ends up being quite ugly and potentially confusing for the user).
    eg: <PivotGridRow Name="[Product].[Category]"></PivotGridRow>
  5. No event handlers: I cannot see any event handlers at all on this control? There are many user-triggered events which could be triggered within the GridConfigurator. This would be critical to synchronise the PivotGrid with any other controls, with the PivotGridEventArgs holding data of what was modified and if the modification was made to the PivotFields or Measures.
  6. No state management: Cannot save or restore state of GridConfigurator. Potentially, the user may have spent some time setting up their perfect PivotGrid that suited their needs, hence saving state seems critical.
  7. No programmatic control via @ref="PivotGrid": Cannot programmatically control the PivotGrid. This would be important to enable synchronisation between other Telerik controls / items on the page.

 

Less Critical

  1. Export: Not critical but some form of export (Excel/PDF), to allow user to save the results.

 

Aside from that, all good and works well.

 

Cheers
Phil

Unplanned
Last Updated: 27 Jun 2023 12:33 by Philip
Created by: Philip
Comments: 0
Category: PivotGrid
Type: Feature Request
7
I want to control the visibility of the total and sub-total. I want to be able to hide them if needed.
Unplanned
Last Updated: 27 Jun 2023 12:20 by Philip
Created by: Philip
Comments: 0
Category: PivotGrid
Type: Feature Request
5
I want to be able to change the aggregate (sum/min/max etc) of measures at runtime.
Unplanned
Last Updated: 27 Jun 2023 12:16 by Philip
Created by: Philip
Comments: 0
Category: PivotGrid
Type: Feature Request
3
There is sorting which works well, but no visual indicator to show to the user the current sort (like the TelerikGrid).
Unplanned
Last Updated: 27 Jun 2023 12:14 by Philip
Created by: Philip
Comments: 0
Category: PivotGrid
Type: Feature Request
13

I want to save or restore the state of the PivotGrid Configurator. Potentially, the user may have spent some time setting up their perfect PivotGrid that suited their needs, hence saving state seems critical.

===

ADMIN EDIT

===

The request covers exposing a state feature to programmatically manage various data operations in the PivotGrid - sorting, filtering, reordering of columns, expanding of items.

Unplanned
Last Updated: 27 Jun 2023 12:07 by Philip
Created by: Philip
Comments: 0
Category: PivotGrid
Type: Feature Request
3
There is no property to rename fields in the XMLA dataset, so the user needs to see the full [Table].[ColumnName] attributes in its raw form (which ends up being quite ugly and potentially confusing for the user).
Unplanned
Last Updated: 27 Jun 2023 12:05 by Philip
Created by: Philip
Comments: 0
Category: PivotGrid
Type: Feature Request
2
By default, the Telerik PivotGrid is always deferring the layout change. Usually on PivotGrids (Excel / PowerBI) there is a tick-box to allow the user to choose. For performant pivot tables, there is no need to defer the layout allowing for quick analytics.
1 2