@datarailsshared/dr_renderer 1.2.97 → 1.2.98
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
|
@@ -6771,6 +6771,9 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
6771
6771
|
tooltip = ''
|
|
6772
6772
|
}
|
|
6773
6773
|
|
|
6774
|
+
all_vals = highchartsRenderer.decodeFunc(all_vals);
|
|
6775
|
+
tooltip = highchartsRenderer.decodeFunc(tooltip);
|
|
6776
|
+
|
|
6774
6777
|
return {
|
|
6775
6778
|
label: displayname + all_vals,
|
|
6776
6779
|
tooltip: displayname + tooltip
|
|
@@ -6808,6 +6811,9 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
6808
6811
|
all_vals = ' (All)';
|
|
6809
6812
|
}
|
|
6810
6813
|
|
|
6814
|
+
all_vals = highchartsRenderer.decodeFunc(all_vals);
|
|
6815
|
+
tooltip = highchartsRenderer.decodeFunc(tooltip);
|
|
6816
|
+
|
|
6811
6817
|
return {
|
|
6812
6818
|
label: displayname + all_vals,
|
|
6813
6819
|
tooltip: displayname + tooltip
|