Class: Scruffy::Components::Grid
- Includes:
- Helpers::Marker
- Defined in:
- lib/scruffy/components/grid.rb
Instance Attribute Summary collapse
-
#markers ⇒ Object
Returns the value of attribute markers.
Attributes inherited from Base
#id, #options, #position, #size, #visible
Instance Method Summary collapse
Methods included from Helpers::Marker
Methods inherited from Base
#initialize, #process, #render
Constructor Details
This class inherits a constructor from Scruffy::Components::Base
Instance Attribute Details
#markers ⇒ Object
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
8 9 10 11 12 13 14 15 16 |
# File 'lib/scruffy/components/grid.rb', line 8 def draw(svg, bounds, ={}) markers = ([:markers] || self.markers) || 5 stroke_width = [:stroke_width] each_marker(markers, [:min_value], [:max_value], bounds[:height], , :value_formatter) do |label, y| svg.line(:x1 => 0, :y1 => y, :x2 => bounds[:width], :y2 => y, :style => "stroke: #{[:theme].marker.to_s}; stroke-width: #{stroke_width};") end end |