rrd-ffi
rrd-ffi copied to clipboard
add HRULE
This is a monkey-patch, but allows for basic HRULE usage:
module RRD
class Graph
def draw_hrule(options)
options = {:width => 1}.merge options
type = "HRULE"
draw(type, options)
end
end
end