Sha256: 6169502f8b321fe4d5a00402e9cbf10304950aeab17243185c6c848fa87532cf

Contents?: true

Size: 950 Bytes

Versions: 5

Compression:

Stored size: 950 Bytes

Contents

module Rubyvis
  module SvgScene
    def self.bar(scenes)
      e=scenes._g.elements[1]
      scenes.each_with_index do |s,i|
        next unless s.visible
        fill=s.fill_style
        stroke=s.stroke_style
        next if(fill.opacity==0 and stroke.opacity==0)
        e=SvgScene.expect(e,'rect', {
          "shape-rendering"=> s.antialias ? nil : "crispEdges",
          "pointer-events"=> s.events,
          "cursor"=> s.cursor,
          "x"=> s.left,
          "y"=> s.top,
          "width"=> [1E-10, s.width].max,
          "height"=> [1E-10, s.height].max,
          "fill"=> fill.color,
          "fill-opacity"=> (fill.opacity==0) ? nil : fill.opacity,
          "stroke"=> stroke.color,
          "stroke-opacity"=> (stroke.opacity==0) ? nil : stroke.opacity,
          "stroke-width"=> stroke.opacity ? s.line_width / SvgScene.scale.to_f : nil
        })

        e=SvgScene.append(e,scenes,i)

      end
      e
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rubyvis-0.4.1 lib/rubyvis/scene/svg_bar.rb
rubyvis-0.4.0 lib/rubyvis/scene/svg_bar.rb
rubyvis-0.3.6 lib/rubyvis/scene/svg_bar.rb
rubyvis-0.3.5 lib/rubyvis/scene/svg_bar.rb
rubyvis-0.3.4 lib/rubyvis/scene/svg_bar.rb