Forums | Admin

Discussion Forums: help

Start New Thread Start New Thread

 

By: Daniel Hernández
RE: Problem with zero values [ reply ]  
2008-01-31 01:49
It is a reported bug, the number 5209.

By: Daniel Hernández
Problem with zero values [ reply ]  
2008-01-29 22:52
Hello,

The code:

g = Gruff::Line.new
g.data("Data", [1]*10)
g.write('graph.png')

draws a horizontal line, but the code:

g = Gruff::Line.new
g.data("Data", [0]*10)
g.write('graph.png')

draws a "Not Data" message, and it is false, because there is data. I think that it is a bug.

--Daniel