@datarailsshared/dr_renderer 1.2.238-dragons → 1.2.239
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
|
@@ -1042,7 +1042,6 @@ 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
|
-
|
|
1046
1045
|
lodash.forEach(col_n_keys, function (col_n_value, index) {
|
|
1047
1046
|
var agg = pivotData.getAggregator(row_n_value, col_n_value);
|
|
1048
1047
|
var val = agg.value();
|
|
@@ -1259,7 +1258,6 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
1259
1258
|
if (opts.trendLine) {
|
|
1260
1259
|
const a = ((ySum * squareXSum) - (xSum * xySum)) / ((n * squareXSum) - (xSum * xSum));
|
|
1261
1260
|
const b = ((n * xySum) - (xSum* ySum)) / ((n * squareXSum) - (xSum * xSum));
|
|
1262
|
-
|
|
1263
1261
|
const trendSeries = lodash.clone(chart_series[chart_series.length - 1]);
|
|
1264
1262
|
trendSeries.className = 'trendSeries';
|
|
1265
1263
|
trendSeries.name = highchartsRenderer.getTrendSeriesName(trendSeries);
|
|
@@ -1270,7 +1268,6 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
1270
1268
|
if (colors && colors[i]) {
|
|
1271
1269
|
trendSeries.color = colors[i];
|
|
1272
1270
|
}
|
|
1273
|
-
|
|
1274
1271
|
trendSerieses.push(trendSeries);
|
|
1275
1272
|
}
|
|
1276
1273
|
i++;
|
|
@@ -1287,7 +1284,6 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
1287
1284
|
}
|
|
1288
1285
|
|
|
1289
1286
|
let weights = { line: 2,spline: 3 ,area:-2, areaspline: -1, scatter:4, column: 1 };
|
|
1290
|
-
|
|
1291
1287
|
if (opts.comboOptions && lodash.includes(chartType,'combo') && !lodash.isEqual(row_n_keys, EMPTY_ROW_N_KEYS)) {
|
|
1292
1288
|
chart_series.forEach((series, seriesIndex) => {
|
|
1293
1289
|
const savedSeriesOption = lodash.find(opts.comboOptions.seriesOptions, {series: series.name});
|
|
@@ -5382,7 +5378,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
5382
5378
|
fields: [],
|
|
5383
5379
|
},
|
|
5384
5380
|
dataType: {
|
|
5385
|
-
regex:
|
|
5381
|
+
regex: /^(data[_\s]type[_\s]by|data[_\s]type)$/i,
|
|
5386
5382
|
allowedFieldTypes: ['Text'],
|
|
5387
5383
|
fields: [],
|
|
5388
5384
|
},
|