@datarailsshared/dr_renderer 1.2.261 → 1.2.263

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.2.261",
3
+ "version": "1.2.263",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -494,8 +494,6 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
494
494
  cols = this.point.name;
495
495
  }
496
496
 
497
- highchartsRenderer.replaceDrOthersKeys(cols, rows, drOthersInAxis, othersName);
498
-
499
497
  if (!lodash.isArray(cols)) {
500
498
  cols = [cols];
501
499
  }
@@ -537,6 +535,8 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
537
535
  cols = modifiedRowsAndCols.cols;
538
536
  }
539
537
 
538
+ highchartsRenderer.replaceDrOthersKeys(cols, rows, drOthersInAxis, othersName);
539
+
540
540
  var aggr = pivotData.getAggregator(rows, cols);
541
541
 
542
542
  const formattedValue = is_drill_down_pie || labelOptions.show_value ? $.pivotUtilities.getFormattedNumber(value, aggr, opts, true) : '';