lilygraph 0.5.7 → 0.5.8
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/lilygraph.rb +2 -2
- data/lilygraph.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.8
|
data/lib/lilygraph.rb
CHANGED
@@ -22,7 +22,7 @@ class Lilygraph
|
|
22
22
|
:legend => :right,
|
23
23
|
:bar_text => :number,
|
24
24
|
:type => :bar,
|
25
|
-
:
|
25
|
+
:flush => false,
|
26
26
|
:viewbox => {
|
27
27
|
:width => 800,
|
28
28
|
:height => 600
|
@@ -300,7 +300,7 @@ class Lilygraph
|
|
300
300
|
end
|
301
301
|
|
302
302
|
def max
|
303
|
-
if @options[:
|
303
|
+
if @options[:flush]
|
304
304
|
temp_max = (data_max + [division / 10, 1].max)
|
305
305
|
else
|
306
306
|
temp_max = data_max
|
data/lilygraph.gemspec
CHANGED