rrd-ffi icon indicating copy to clipboard operation
rrd-ffi copied to clipboard

add HRULE

Open skandragon opened this issue 11 years ago • 0 comments

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

skandragon avatar May 28 '13 22:05 skandragon