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.