Class: Scruffy::Components::Grid

Inherits:
Base
  • Object
show all
Defined in:
lib/scruffy/components/grid.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#id, #options, #position, #size, #visible

Instance Method Summary collapse

Methods inherited from Base

#initialize, #process, #render

Constructor Details

This class inherits a constructor from Scruffy::Components::Base

Instance Attribute Details

#markersObject

Returns the value of attribute markers.



4
5
6
# File 'lib/scruffy/components/grid.rb', line 4

def markers
  @markers
end

Instance Method Details

#draw(svg, bounds, options = {}) ⇒ Object



6
7
8
9
10
11
12
13
# File 'lib/scruffy/components/grid.rb', line 6

def draw(svg, bounds, options={})
  markers = (options[:markers] || self.markers) || 5
  
  (0...markers).each do |idx|
    marker = ((1 / (markers - 1).to_f) * idx) * bounds[:height]
    svg.line(:x1 => 0, :y1 => marker, :x2 => bounds[:width], :y2 => marker, :style => "stroke: #{options[:theme].marker.to_s}; stroke-width: 2;")
  end
end