logitude-dashboard-library 3.2.5 → 3.2.6
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 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +3 -2
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -977,9 +977,10 @@ function buildStackedDataSet(seriesMeasures, widget) {
|
|
|
977
977
|
var emptylabels = dataSet.filter(function (e) {
|
|
978
978
|
return e.seriesName == null;
|
|
979
979
|
});
|
|
980
|
-
|
|
980
|
+
var filledLabels = dataSet.filter(function (e) {
|
|
981
981
|
return e.seriesName != null;
|
|
982
|
-
})
|
|
982
|
+
});
|
|
983
|
+
dataSet = widget.SecondaryDateGroupCode ? sortDataSet(filledLabels, widget.SecondaryDateGroupCode) : filledLabels;
|
|
983
984
|
return emptylabels.concat(dataSet);
|
|
984
985
|
}
|
|
985
986
|
|