@datarailsshared/dr_renderer 1.2.102 → 1.2.103
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
|
@@ -5655,6 +5655,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
5655
5655
|
value_name: 'show',
|
|
5656
5656
|
default_value: false,
|
|
5657
5657
|
disabled_str: '!{var}.show_value_in_labels && !{var}.show_percentage_in_labels',
|
|
5658
|
+
disabled_fn: (value) => !value.show_value_in_labels && !value.show_percentage_in_labels,
|
|
5658
5659
|
},
|
|
5659
5660
|
{
|
|
5660
5661
|
element_type: 'checkbox',
|
|
@@ -5754,6 +5755,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
5754
5755
|
element_label: 'Name',
|
|
5755
5756
|
default_value: '',
|
|
5756
5757
|
disabled_str: '{var}.autoylabel',
|
|
5758
|
+
disabled_fn: (value) => value.autoylabel,
|
|
5757
5759
|
},
|
|
5758
5760
|
{
|
|
5759
5761
|
element_type: 'input',
|
|
@@ -5786,6 +5788,7 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
5786
5788
|
element_label: 'Name',
|
|
5787
5789
|
default_value: '',
|
|
5788
5790
|
disabled_str: '{var}.autoxlabel',
|
|
5791
|
+
disabled_fn: (value) => value.autoxlabel,
|
|
5789
5792
|
},
|
|
5790
5793
|
{
|
|
5791
5794
|
element_type: 'input',
|