When creating a Pivot table using EPPlus library, we can add the row fields using PivotTable.RowFields.Add(...) function, similarly the data fields can be added using the PivotTable.DataFields.Add(...) function.
The issue is when I want to show the values of data field as percentage (%) of the grand total (see below image, setting used in actual Excel pivot table). The data field only gives DataFieldFunctions.Sum, Count, Average etc. But, there is no setting which allows the field value to be show as % of the grand total.
