logitude-dashboard-library 3.2.37 → 3.2.38
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 +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -3
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2127,7 +2127,7 @@ function RenderStackedChartTotalsAndPercentages(widget, seriesMeasures) {
|
|
|
2127
2127
|
function getGroupValuePercentage(seriesMeasures, groupbyId, secGroupbyId) {
|
|
2128
2128
|
var _seriesMeasures$Value;
|
|
2129
2129
|
|
|
2130
|
-
if (!
|
|
2130
|
+
if (!seriesMeasures) {
|
|
2131
2131
|
return;
|
|
2132
2132
|
}
|
|
2133
2133
|
|
|
@@ -2145,7 +2145,7 @@ function getGroupValuePercentage(seriesMeasures, groupbyId, secGroupbyId) {
|
|
|
2145
2145
|
}
|
|
2146
2146
|
|
|
2147
2147
|
function getSumOfGroupValues(seriesMeasure, groupbyId) {
|
|
2148
|
-
if (!
|
|
2148
|
+
if (!seriesMeasure) {
|
|
2149
2149
|
return "";
|
|
2150
2150
|
}
|
|
2151
2151
|
|
|
@@ -2154,7 +2154,7 @@ function getSumOfGroupValues(seriesMeasure, groupbyId) {
|
|
|
2154
2154
|
}
|
|
2155
2155
|
|
|
2156
2156
|
function getSumOfGroupValuesAsNumber(seriesMeasure, groupbyId) {
|
|
2157
|
-
if (!
|
|
2157
|
+
if (!seriesMeasure) {
|
|
2158
2158
|
return 0;
|
|
2159
2159
|
}
|
|
2160
2160
|
|