report_html 0.3.8 → 0.4.0
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/js/canvasXpress.css +5403 -1657
- data/js/canvasXpress.css_old +2317 -0
- data/js/canvasXpress.min.js +46 -63
- data/js/canvasXpress.min.js_old +448 -0
- data/lib/report_html/report_html.rb +3 -1
- data/lib/report_html/version.rb +1 -1
- metadata +4 -2
|
@@ -364,7 +364,7 @@ class Report_html
|
|
|
364
364
|
}
|
|
365
365
|
options.merge!(user_options)
|
|
366
366
|
config = {
|
|
367
|
-
'
|
|
367
|
+
'toolbarType' => 'under',
|
|
368
368
|
'xAxisTitle' => options[:x_label],
|
|
369
369
|
'title' => options[:title]
|
|
370
370
|
}
|
|
@@ -519,6 +519,8 @@ class Report_html
|
|
|
519
519
|
return html_string
|
|
520
520
|
end
|
|
521
521
|
|
|
522
|
+
alias scatter2D sccater2D # Fix for wrong name method
|
|
523
|
+
|
|
522
524
|
def scatterbubble2D(user_options = {}, &block)
|
|
523
525
|
default_options = {
|
|
524
526
|
row_names: true,
|
data/lib/report_html/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: report_html
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- seoanezonjic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -62,7 +62,9 @@ files:
|
|
|
62
62
|
- bin/report_html
|
|
63
63
|
- bin/setup
|
|
64
64
|
- js/canvasXpress.css
|
|
65
|
+
- js/canvasXpress.css_old
|
|
65
66
|
- js/canvasXpress.min.js
|
|
67
|
+
- js/canvasXpress.min.js_old
|
|
66
68
|
- js/canvasXpress_license
|
|
67
69
|
- lib/report_html.rb
|
|
68
70
|
- lib/report_html/report_html.rb
|