logitude-dashboard-library 3.2.15 → 3.2.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1628,8 +1628,9 @@ var PivotTable = React.forwardRef(function (props, comRef) {
|
|
|
1628
1628
|
var pivotDataCellsFields = tabledata.current.PivotMeasures.map(function (measure) {
|
|
1629
1629
|
return {
|
|
1630
1630
|
dataField: measure.PivotMeasureCode,
|
|
1631
|
-
dataType: 'string',
|
|
1632
1631
|
area: 'data',
|
|
1632
|
+
dataType: 'number',
|
|
1633
|
+
summaryType: 'sum',
|
|
1633
1634
|
wordWrapEnabled: true,
|
|
1634
1635
|
caption: measure.DisplayName
|
|
1635
1636
|
};
|