Hello:
I'm working on satisfying a requirement using the Javascript PivotView. I need to display different aggregates on each axis for a given value. Ideally, I would be able to explicitly define an aggregate for each value by axis, but I'm not sure I'm able to do that with this control.
For Example, the below pivot showcases my desired outcome:
| Example ABC | Example DEF | Example GHI | Grand Totals (Averages)
|
| Total | Total | Total | Total |
Example 123 | 2 | 4 | 6 | 4 |
Example 456 | 5 | 5 | 5 | 5 |
Grand Totals (Summation) | 7 | 9 | 11 | 9 |
Currently, I have each value set to average, so i only need to "override" the aggregates at the bottom to reflect a summation. I'm hoping I can "override" the values either in an event (load, enginePopulating, enginePopulated, dataBound, ...) or in a cellTemplate.
I appreciate any suggestions or advice in achieving the desired functionality.
Thanks