ghazel-googlecharts 1.4.0.2 → 1.4.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. data/lib/gchart.rb +10 -3
  2. metadata +1 -1
data/lib/gchart.rb CHANGED
@@ -137,14 +137,21 @@ class Gchart
137
137
  def full_data_range(ds)
138
138
  return if @max_value == false
139
139
 
140
- ds.each do |mds|
140
+ ds.each_with_index do |mds, mds_index|
141
141
  # global limits override individuals. is this preferred?
142
142
  mds[:min_value] = @min_value if not @min_value.nil?
143
143
  mds[:max_value] = @max_value if not @max_value.nil?
144
144
 
145
145
  # TODO: can you have grouped stacked bars?
146
- if @type == :bar and not grouped and mds[:data].first.is_a?(Array)
147
- mds[:min_value] ||= mds[:data].first.to_a.compact.min
146
+
147
+ if mds_index == 0 and @type == :bar
148
+ # TODO: unless you specify a zero line (using chp or chds),
149
+ # the min_value of a bar chart is always 0.
150
+ #mds[:min_value] ||= mds[:data].first.to_a.compact.min
151
+ mds[:min_value] ||= 0
152
+ end
153
+ if (mds_index == 0 and @type == :bar and
154
+ not grouped and mds[:data].first.is_a?(Array))
148
155
  totals = []
149
156
  mds[:data].each do |l|
150
157
  l.each_with_index do |v, index|
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ghazel-googlecharts
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0.2
4
+ version: 1.4.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Aimonetti