@datarailsshared/dr_renderer 1.2.237 → 1.2.238-dragons

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.237",
3
+ "version": "1.2.238-dragons",
4
4
  "description": "DataRails charts and tables renderer",
5
5
  "keywords": [
6
6
  "datarails",
@@ -1042,6 +1042,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
1042
1042
  if (row_n_value && row_n_value.length > 0) {
1043
1043
  ob.name = row_n_value.join(highchartsRenderer.delimer).replace('DR_Others', othersName);
1044
1044
  }
1045
+
1045
1046
  lodash.forEach(col_n_keys, function (col_n_value, index) {
1046
1047
  var agg = pivotData.getAggregator(row_n_value, col_n_value);
1047
1048
  var val = agg.value();
@@ -1258,6 +1259,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
1258
1259
  if (opts.trendLine) {
1259
1260
  const a = ((ySum * squareXSum) - (xSum * xySum)) / ((n * squareXSum) - (xSum * xSum));
1260
1261
  const b = ((n * xySum) - (xSum* ySum)) / ((n * squareXSum) - (xSum * xSum));
1262
+
1261
1263
  const trendSeries = lodash.clone(chart_series[chart_series.length - 1]);
1262
1264
  trendSeries.className = 'trendSeries';
1263
1265
  trendSeries.name = highchartsRenderer.getTrendSeriesName(trendSeries);
@@ -1268,6 +1270,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
1268
1270
  if (colors && colors[i]) {
1269
1271
  trendSeries.color = colors[i];
1270
1272
  }
1273
+
1271
1274
  trendSerieses.push(trendSeries);
1272
1275
  }
1273
1276
  i++;
@@ -1284,6 +1287,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
1284
1287
  }
1285
1288
 
1286
1289
  let weights = { line: 2,spline: 3 ,area:-2, areaspline: -1, scatter:4, column: 1 };
1290
+
1287
1291
  if (opts.comboOptions && lodash.includes(chartType,'combo') && !lodash.isEqual(row_n_keys, EMPTY_ROW_N_KEYS)) {
1288
1292
  chart_series.forEach((series, seriesIndex) => {
1289
1293
  const savedSeriesOption = lodash.find(opts.comboOptions.seriesOptions, {series: series.name});