thecore_ui_commons 3.2.7 → 3.2.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 10d56b0b126b525292418a6190c2e2d87a8b491be23b3c5bc47779b7f2a70f21
4
- data.tar.gz: ae42dfaca60bfe76a0becc6ad99922968f1aa880df0d8a8fc521e0b116ae5dec
3
+ metadata.gz: 9a89f857f2cf388f09bf05ca847fae601011f21e260589ff73ae40936367ab45
4
+ data.tar.gz: 36097df9d2f5f0a439b038b5d6b646fa42807574baf1c00cb4eca4a34ce335fb
5
5
  SHA512:
6
- metadata.gz: c53e3b75987231af617828f027b79b71cb57d69348d50ce2132e059e401397f099f4f8f45c08e8dd47c4786763dfab23f4836adfef2e7f552d18c4a03dbe0cdb
7
- data.tar.gz: b804872d532bc90078011722ba5ba3e20b2953aa229132dc926f243195b0cb0b5e8e9325af017d8dd0c62f49001216554fc4fec24067f3ce4fe5a7707da4b1d4
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,
@@ -29,8 +34,12 @@ module Echarts
29
34
  trigger: "axis",
30
35
  },
31
36
  xAxis: {
32
- type: "category",
37
+ type: "value",
33
38
  name: xLabel,
39
+ boundaryGap: false,
40
+ data: x_values,
41
+ min: x_values.first.floor,
42
+ max: x_values.last.ceil,
34
43
  },
35
44
  yAxis: {
36
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.7".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.7
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-09-11 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