Class: Scruffy::Components::DataMarkers

Inherits:
Base
  • Object
show all
Includes:
Helpers::Marker
Defined in:
lib/scruffy/components/data_markers.rb

Instance Attribute Summary collapse

Attributes inherited from Base

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

Instance Method Summary collapse

Methods included from Helpers::Marker

#each_marker

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.



8
9
10
# File 'lib/scruffy/components/data_markers.rb', line 8

def markers
  @markers
end

Instance Method Details

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



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/scruffy/components/data_markers.rb', line 10

def draw(svg, bounds, options={})
  if options[:calculate_markers] && (options[:point_markers].nil? || options[:point_markers].empty?)
    markers = (options[:markers] || self.markers) || 5
    options[:point_markers] = []
    each_marker(markers, options[:min_key], options[:max_key], bounds[:width], options, :key_formatter) do |label, x|
      options[:point_markers] << label
    end
  end
  unless options[:point_markers].nil?
    # Updated to set the label in line with the point.
    point_distance = bounds[:width] / (options[:point_markers].size).to_f
    (0...options[:point_markers].size).map do |idx| 
      x_coord = point_distance * idx  + point_distance/2
      if options[:point_markers_ticks]
        svg.line(:x1 => x_coord, :y1 => 0, :x2 => x_coord, :y2 => -2, :style => "stroke:#{(options[:theme].marker || 'white').to_s}, stroke-width:1")
      end

      svg.text(options[:point_markers][idx],
        :x => 0,
        :y => 0, 
        'font-size' => options[:theme].marker_font_size || relative(90),
        'font-family' => options[:theme].font_family,
        :transform => "translate(#{x_coord},#{bounds[:height]}) rotate(#{options[:point_markers_rotation] || 0})",
        :fill => (options[:theme].marker || 'white').to_s, 
        'text-anchor' => 'middle') unless options[:point_markers][idx].nil?
    end
  end
end