@datarailsshared/dr_renderer 1.5.76 → 1.5.79

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datarailsshared/dr_renderer",
3
- "version": "1.5.76",
3
+ "version": "1.5.79",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -989,7 +989,8 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
989
989
  tempAr[temp_len - 1] = highchartsRenderer.getFieldName(colAttrs[j]);
990
990
  }
991
991
 
992
- tempAr = tempAr.concat(lodash.map(colKeys, function (row) {
992
+ const formattedColKeys = highchartsRenderer.getFormattedColKeys(pivotData, null);
993
+ tempAr = tempAr.concat(lodash.map(formattedColKeys, function (row) {
993
994
  return row[j];
994
995
  }));
995
996