@datarailsshared/dr_renderer 1.2.455 → 1.2.456
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
@@ -25,24 +25,24 @@ const GAUGE_OPTIONS_DEFAULT = {
|
|
25
25
|
},
|
26
26
|
goal: {
|
27
27
|
title: "Goal",
|
28
|
-
value:
|
28
|
+
value: 1000000,
|
29
29
|
},
|
30
30
|
isAbsoluteValue: false,
|
31
31
|
segments: [
|
32
32
|
{
|
33
33
|
from: 0,
|
34
|
-
to:
|
34
|
+
to: 50,
|
35
35
|
title: "Low",
|
36
36
|
color: "#BF1D30",
|
37
37
|
},
|
38
38
|
{
|
39
|
-
from:
|
40
|
-
to:
|
39
|
+
from: 51,
|
40
|
+
to: 90,
|
41
41
|
title: "Medium",
|
42
42
|
color: "#FFA310",
|
43
43
|
},
|
44
44
|
{
|
45
|
-
from:
|
45
|
+
from: 91,
|
46
46
|
to: 100,
|
47
47
|
title: "High",
|
48
48
|
color: "#037C5A",
|
@@ -7357,19 +7357,13 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
7357
7357
|
},
|
7358
7358
|
{
|
7359
7359
|
element_type: 'checkbox',
|
7360
|
-
element_label: '
|
7361
|
-
value_name: 'show_percentage_in_goal',
|
7362
|
-
default_value: true,
|
7363
|
-
},
|
7364
|
-
{
|
7365
|
-
element_type: 'checkbox',
|
7366
|
-
element_label: 'Value %',
|
7360
|
+
element_label: 'Value % out of Goal',
|
7367
7361
|
value_name: 'show_percentage_in_value',
|
7368
7362
|
default_value: true,
|
7369
7363
|
},
|
7370
7364
|
{
|
7371
7365
|
element_type: 'checkbox',
|
7372
|
-
element_label: '
|
7366
|
+
element_label: 'Segment % out Goal',
|
7373
7367
|
value_name: 'show_percentage_in_segments',
|
7374
7368
|
default_value: true,
|
7375
7369
|
},
|