thecore_ui_commons 3.2.2 → 3.2.3
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.
- checksums.yaml +4 -4
- data/lib/echarts/multiple_vectors.rb +3 -3
- data/lib/echarts/vector.rb +2 -3
- data/lib/thecore_ui_commons/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 701e53633008dcb66db88ad1a92ecccd70650a7f0baa25b705594c9eec412db4
|
|
4
|
+
data.tar.gz: 8658b31d7f6eb144c8e3228c0304cc32c826f6181ecc4b2019f4126c1b18aa4e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9bb4bd9d27c0e5e6b0b88feea4233d38adc1d3746d40d1a073050763040bc52d6cb5778ab4b08a3aa51f1dada1d9a1cce401a3a333de56627a42fc9ab30a7661
|
|
7
|
+
data.tar.gz: 2824c851e38cef0a4ac0560ca3e5c83c512a416748941170b7b12f4b6004ad7fb507b52d9b9b3205ac5ed609203feb22aca5d29a85d8d356668cce13cd3638fb
|
|
@@ -36,9 +36,9 @@ module Echarts
|
|
|
36
36
|
yAxis: {
|
|
37
37
|
type: "value",
|
|
38
38
|
name: yLabel,
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
# Set Upper and Lower bounds to the upper and lower bounds of the data
|
|
40
|
+
min: lower_bound,
|
|
41
|
+
max: upper_bound,
|
|
42
42
|
},
|
|
43
43
|
series: stacks.map.with_index do |stack, index|
|
|
44
44
|
{
|
data/lib/echarts/vector.rb
CHANGED