thecore_ui_commons 3.2.8 → 3.2.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aaf234fe9cbb69c8badd6c235d7c4f7b5ac385d83c2690ea834d3eeaa18c2218
4
- data.tar.gz: 0ec33022227156b2aefa0f8a0c06639c4f54c5acaef154bb9830d4e07ed17205
3
+ metadata.gz: 9a89f857f2cf388f09bf05ca847fae601011f21e260589ff73ae40936367ab45
4
+ data.tar.gz: 36097df9d2f5f0a439b038b5d6b646fa42807574baf1c00cb4eca4a34ce335fb
5
5
  SHA512:
6
- metadata.gz: 9d361c719112ba83c001550f2d875d4f7db297b351105de1b9afef3f96678d56cdc4bd989c9a8ed8c1d28361c15af2ad784847ba6e9bd23f9ccc975aeaeb3c5c
7
- data.tar.gz: d707e2ec3bd761c6359df75035bb4a81547050f32132f00ebbb00977fe893e3a6f6ad902e2489d5349e31d8939b09b6bc254c883b392181570fb65278e138988
6
+ metadata.gz: 85111e3931683d801814410c6b229242a38c954183939849b2235e0874d48f4541cb6d11868798bd45eef6276b401e08255a1c1593a639beaa878ed696164515
7
+ data.tar.gz: 6a405ce358889a913b41abacd849363215e4dcc3b0c707cf4644025379494c09611011d32b12e83e57b2865f17931811232821550552b6208d34ea878bc3c77b
@@ -1,8 +1,13 @@
1
1
  module Echarts
2
2
  module MultipleVectors
3
3
  def self.get_config(stacks, legend, min, max, lower_bound, upper_bound, title, subtitle, xLabel, yLabel, color_min = "limegreen", color_max = "tomato")
4
- Rails.logger.debug("Legend: #{legend}\nLegend size: #{legend.size}")
5
- Rails.logger.debug("Stacks size: #{stacks.size}")
4
+ # Rails.logger.debug("Legend: #{legend}\nLegend size: #{legend.size}")
5
+ # Rails.logger.debug("Stacks size: #{stacks.size}")
6
+ # get first value of each stack present in the stacks array and use it as the x axis
7
+ # Stacks is in the form [[[x1, y1], [x2, y2], [x3, y3], ...], [[x1, y1], [x2, y2], [x3, y3], ...], ...]
8
+ # data must be [x1, x2, x3, ...]
9
+ x_values = stacks.map { |stack| stack.map(&:first) }.flatten.uniq.sort
10
+ # Rails.logger.debug("X Values: #{x_values}")
6
11
  {
7
12
  grid: {
8
13
  top: 80,
@@ -32,10 +37,9 @@ module Echarts
32
37
  type: "value",
33
38
  name: xLabel,
34
39
  boundaryGap: false,
35
- # get first value of each stack present in the stacks array and use it as the x axis
36
- # Stacks is in the form [[[x1, y1], [x2, y2], [x3, y3], ...], [[x1, y1], [x2, y2], [x3, y3], ...], ...]
37
- # data must be [x1, x2, x3, ...]
38
- data: stacks.map { |stack| stack.map(&:first) }.flatten.uniq.sort,
40
+ data: x_values,
41
+ min: x_values.first.floor,
42
+ max: x_values.last.ceil,
39
43
  },
40
44
  yAxis: {
41
45
  type: "value",
@@ -1,6 +1,7 @@
1
1
  module Echarts
2
2
  module Vector
3
3
  def self.get_config(x, value, min, max, lower_bound, upper_bound, title, subtitle, xLabel, yLabel, color_min = "limegreen", color_max = "tomato", color_generic = "dodgerblue")
4
+ # Rails.logger.debug("X: #{x.inspect}")
4
5
  {
5
6
  grid: {
6
7
  top: 80,
@@ -1,3 +1,3 @@
1
1
  module ThecoreUiCommons
2
- VERSION = "3.2.8".freeze
2
+ VERSION = "3.2.9".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thecore_ui_commons
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.8
4
+ version: 3.2.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gabriele Tassoni
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-12 00:00:00.000000000 Z
11
+ date: 2024-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thecore_backend_commons