Hide or remove default values operations pivot?

Hi
is there any way to hide or remove a default value from operations ?
ex:
remove the sum, min from the list and leave only a custom list ?
or leave only the one specific column for sum and min and the others column normal.
Thanks in advance.

Is there any feedback on this topic?

Hello Nick,

To remove default operations you need to override _setOperations method of pivot.services.LocalData and delete all of them:
this.operations = this.operations.slice((-1)*length)

If you want to leave some default operations, you can do this by looping through the this.operations array, choosing the ones you need.
Please check the example: Code Snippet