I'm struggling to find a way to display 2 different measures in the Angular Pivot Grid at the same time.
When I provide multiple measures, it appears to just aggregate both values together. One is supposed to represent a dollar amount, and the other is the number of hours worked.
public measures: Measure[] = [
{
name: 'Cost',
value: (item) => item.GpCosts,
aggregate: sumAggregate,
},
{
name: 'TotalHours',
value: (item) => item.TotalHours,
aggregate: sumAggregate,
},
];
It looks like this behavior is available on the JQueryUI version of the grid. I'm not sure what I'm missing, configuration wise on the Angular one.
If the following is my setup for the default row axes, even though both axes are set to expand: true, only the first one will actually be expanded when the pivot grid loads. Maybe I am misunderstanding the point of having the name be an array of strings? the documentation doesn't seem to say what that is. Can I nest these somehow?
If you change the setup of a pivotgrid from the default and then you use the configurator to change things, expanding or collapsing the rows causes it to revert back to including the default setting.
You can see this on your demo page.
Hello,
I'm trying to add filters to the pivot grid as below. Please help me to implement filter option as below by using Kendo UI Angular.
This is the code I'm using for pivot grid and don't know where to add the property to enable the filter.