@datarailsshared/dr_renderer 1.2.313 → 1.2.314
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 +1 -1
- package/src/highcharts_renderer.js +6 -12
package/package.json
CHANGED
@@ -5516,18 +5516,12 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
5516
5516
|
const fieldOb = lodash.find(fields, { id: filterObj.id });
|
5517
5517
|
if (!fieldOb) return;
|
5518
5518
|
|
5519
|
-
|
5520
|
-
|
5521
|
-
|
5522
|
-
|
5523
|
-
filterObj.
|
5524
|
-
|
5525
|
-
|
5526
|
-
fieldOb.includes = filterObj.includes;
|
5527
|
-
fieldOb.values = filterObj.values;
|
5528
|
-
|
5529
|
-
if (filterObj.allow_nulls && fieldOb) {
|
5530
|
-
fieldOb.allow_nulls = filterObj.allow_nulls;
|
5519
|
+
if (filterObj.is_exclude) {
|
5520
|
+
filterObj.excludes = filterObj.values && lodash.map(filterObj.values, highchartsRenderer.decodeFunc);
|
5521
|
+
fieldOb.excludes = filterObj.excludes;
|
5522
|
+
} else {
|
5523
|
+
filterObj.includes = filterObj.values && lodash.map(filterObj.values, highchartsRenderer.decodeFunc);
|
5524
|
+
fieldOb.includes = filterObj.includes;
|
5531
5525
|
}
|
5532
5526
|
});
|
5533
5527
|
|