On a screen, showing the totals to the left and bottom of the data it summarizes makes no sense. When a user drills through a data set, the totals are the deciding factors for which nodes to expand.
In the .NET for Ajax PivotGrid, you can set a caption for all fields, row and column. This does not seem possible in the kendo based version (MVC). The only property I see on a column or row is if we want it expanded by default or not. Here is how it is done on the Webforms version of the control <Fields> <telerik:PivotGridRowField DataField="Rep" ZoneIndex="1" Caption="Rep" </telerik:PivotGridRowField>
Advanced functionality in xml/a binding should be available to local binding. Also ability to define new binding protocols.
Expanding programmatically all paths in a level in a pivot grid is coumbersome. One should be able to expand all itlems in a level. Also when one row.expand and column.expand configuration should work for all levels.
In some applications one may not want aggregation on some or all dimenions on the pivot grid and jut show the raw data.
Kendo pivotgrid should show non-empty members in filters - currently when we open the row or column filter to see the members in the dimension all the members in the dimension seem to be shown. At least we need a field to let us indicate that the filter entries should be filtered out using 'non empty' clause.
Kendo pivotgrid does not allow us to hide 'All' row/column.'All' row/column is not always needed in a OLAP report. Excel would allow us to hide/eliminate subtotall rows/columns. pivotgrid needs similar functionality. In general emulate Excel pivotgrid functionality in kendo pivotgrid
Kendo pivotgrid - clicking on a data cell should produce correct row/column/filter items info so that the info can be used for custom drilldowns and drillthroughs. Currently the info produce by cells defined by All row/column is incorrect in the interior of the pivotgrid
Kendo pivotgrid currently has only row and column filters. Filters and Filter area are also important. See other pivotgrid implementations - especially DevExpress ASPxPivotgrid and Excel pivot table
What we would need is te possibility to show the percentage of the gand total summary. For example: row / column value 1 / 2 2 / 3 3 / 5 summary / 10 => change calculation to percent of grand total 1 / 20% 2 / 30% 3 / 50%
Add format configuration for Pivot schema rows and columns. Like aggregates config.
The PivotConfigurator is very static. It would be nice to change the layout. For example some options: - Hide / visibility of all four elements (Row, Column, Measure, Fieldlist) - Position of all four elements (Row, Column, Measure, Fieldlist)
Problem: The values and fieldnames can be very long or very short. Based on that, values and fieldnames are often truncated or lost in a way to wide column. That behavior has many downsides: - The PivotGrid need much more space then it should - Long values and fieldnames can't be read - It's totally not responsive and looks bad Competitors solution: - http://www.igniteui.com/pivot-grid/all-grid-features - http://webix.com/pivot/ Problem-solving approach: - Show resize icon when hovering over a the bar between two columns - Resize this column to it's min. width (value or fieldname) after a double click on this bar - Manual resizing of the column by drag and drop of this bar - Automatically size columns to there min. width on initialisation
Make the COUNT measure count only distinct itens on PivotGrid. For instance, let's say we have a dataSource like this: var dados = [{ PersonID: 2958, Address: "5h St"},{ PersonID: 2958, Address: "​Lexington Ave"},{ PersonID: 2958, ​Address: "76th Street"}] Note that it is only 1 person, which has 3 address.. if I wanted to use the COUNT measure on the Address, it is correct (it counts 3 itens). But when I use the COUNT measure on the PersonID, it also counts 3 itens, but there is only one personID. I think it should count distinct values for the data in the measure.
As per this post: http://www.telerik.com/forums/pivotgrid-bug When using PivotGrid with a flat data source the handles for dragging the dimensions are labelled with a different string to the dimension headers. The dimension headers are labelled with the dataSource.schema.cube.dimensions.[name].caption. The dimension drag handles are labelled with the dataSource.rows.name (or dataSource.columns.name). Now, the dataSource.rows.name must be the key in the dataSource.schema.cube.dimensions of the dimension and this must also be a key in each item in the data array -- the field that stores the value of the dimension -- and therefore is in general not suitable for showing to users. In any case, it seems to me to be a bug that the drag handle is labelled with a different string to the dimension caption.
An OData feed that supports 'OData Extension for Data Aggregation Version 4.0' can be queried for all of the information required to populate a PivotGrid with rows and columns that are paged, sortable (including by different aggregates of the measures), and filterable, and have all calculations performed on the server. The pivot grid can be popualted using data obtained from a couple of requests to a suitable feed -- or feeds. Suppose we have an OData feed that we'd like to display in a pivot grid. Some of the columns in the feed will become dimensions, and some will become measures. (We may display the same measure more than once, with different aggregates applied.) In order to display the row/column headings for the pivotGrid we need to select the distinct values from the 'dimension' columns. The filtering provided by OData allows the row/column headings to be filtered, and even paged (in both directions). Sorting is more difficult because we want to sort not only by the row/column heading values themselves, but also by (aggregates of) the measures. However, that's a problem for the server side! In order to populate the body of the table we need to calculate a load of aggregates from the measure columns in the base dataset for the rows that correspond to visible row/column headers. We can write a rather long OData $filter expression to obtain the required rows from the original OData feed, and then aggregate them. All of this functionality is available in 'OData Extension for Data Aggregation Version 4.0'. However, as an interim solution we may establish two 'helper' OData feeds associated with the original feed: one for the dimensions for populating the row and column headers, and one for the measures to populate the body of the table. The grid has already established a convention for asking for aggregates computed on the server, although this can be overridden using parameterMap anyway.
At the moment it's possible to drag & drop fields into the grid. But it's not possible to set the field at a specific position. That is very unusual. I would expect to see a position marker while hovering with a fields over the drop area. When ein drop the field it goes there where the marker was.
It would be nice to have a chart chooser for the PivotGrid build in (a dropdown that i can place anywhere). At the moment it is really difficult to display a PivotGrid in a chart or even change the chart type on the fly. This and the convertion to a chart could be build in so every developer don't need to worry about this. What i visualize is a dropdown menu which shows all posible chart types. If i choose one, the pivot grid disapears and on it's position the choosen chart apears (optional with the PivotConfigurator in the side). From a chart i can switch back to the pivot grid or choose another chart type.
I want to sort rows and columns by values (not fieldnames). One way to do that is like it's done by DevExpress (https://demos.devexpress.com/ASPxPivotGridDemos/OLAP/Browser.aspx). By right clicking a field i can choose for with field, row, column and measurement i want to sort. But even this solution could be more userfriendly. Another more direct solution would be to sort by clicking on a measurement field or if there is only one, on a fieldname. Both are just suggestions. But the functionality of sorting by values is really relevant. http://www.telerik.com/forums/sort-rows-and-columns-by-values
Your friend devexpress have very nice compact pivot grid layout https://demos.devexpress.com/MVCxPivotGridDemos/Layout/CompactLayout Can we also have it on kendo ui ?