Class: Axlsx::Drawing

Inherits:
Object
  • Object
show all
Defined in:
lib/axlsx/drawing/drawing.rb

Overview

Note:

The recommended way to manage drawings is to use the Worksheet.add_chart method.

A Drawing is a canvas for charts. Each worksheet has a single drawing that manages anchors. The anchors reference the charts via graphical frames. This is not a trivial relationship so please do follow the advice in the note. see README for an example of how to create a chart.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(worksheet) ⇒ Drawing

Creates a new Drawing object

Parameters:

  • worksheet (Worksheet)

    The worksheet that owns this drawing



80
81
82
83
84
85
# File 'lib/axlsx/drawing/drawing.rb', line 80

def initialize(worksheet)
  DataTypeValidator.validate "Drawing.worksheet", Worksheet, worksheet
  @worksheet = worksheet
  @worksheet.workbook.drawings << self
  @anchors = SimpleTypedList.new [TwoCellAnchor, OneCellAnchor]
end

Instance Attribute Details

#anchorsSimpleTypedList (readonly)

A collection of anchors for this drawing only TwoCellAnchors are supported in this version

Returns:



48
49
50
# File 'lib/axlsx/drawing/drawing.rb', line 48

def anchors
  @anchors
end

#chartsArray (readonly)

An array of charts that are associated with this drawing’s anchors

Returns:

  • (Array)


52
53
54
# File 'lib/axlsx/drawing/drawing.rb', line 52

def charts
  @charts
end

#imagesArray (readonly)

An array of image objects that are associated with this drawing’s anchors

Returns:

  • (Array)


56
57
58
# File 'lib/axlsx/drawing/drawing.rb', line 56

def images
  @images
end

#indexInteger (readonly)

The index of this drawing in the owning workbooks’s drawings collection.

Returns:

  • (Integer)


60
61
62
# File 'lib/axlsx/drawing/drawing.rb', line 60

def index
  @index
end

#pnString (readonly)

The part name for this drawing

Returns:

  • (String)


68
69
70
# File 'lib/axlsx/drawing/drawing.rb', line 68

def pn
  @pn
end

#relationshipsRelationships (readonly)

The drawing’s relationships.

Returns:



76
77
78
# File 'lib/axlsx/drawing/drawing.rb', line 76

def relationships
  @relationships
end

#rels_pnString (readonly)

The relational part name for this drawing

Returns:

  • (String)


72
73
74
# File 'lib/axlsx/drawing/drawing.rb', line 72

def rels_pn
  @rels_pn
end

#rIdString (readonly)

The relation reference id for this drawing

Returns:

  • (String)


64
65
66
# File 'lib/axlsx/drawing/drawing.rb', line 64

def rId
  @rId
end

#worksheetWorksheet (readonly)

The worksheet that owns the drawing

Returns:



43
44
45
# File 'lib/axlsx/drawing/drawing.rb', line 43

def worksheet
  @worksheet
end

Instance Method Details

#add_chart(chart_type, options = {}) ⇒ Object

Note:

The recommended way to manage charts is to use Worksheet.add_chart. Please refer to that method for documentation.

Adds a chart to the drawing.



98
99
100
101
# File 'lib/axlsx/drawing/drawing.rb', line 98

def add_chart(chart_type, options={})
  TwoCellAnchor.new(self, options)
  @anchors.last.add_chart(chart_type, options)
end

#add_image(options = {}) ⇒ Object

Note:

The recommended way to manage images is to use Worksheet.add_image. Please refer to that method for documentation.

Adds an image to the chart



90
91
92
93
# File 'lib/axlsx/drawing/drawing.rb', line 90

def add_image(options={})
  OneCellAnchor.new(self, options)
  @anchors.last.object
end

#to_xmlString

Serializes the drawing

Returns:

  • (String)


142
143
144
145
146
147
148
149
# File 'lib/axlsx/drawing/drawing.rb', line 142

def to_xml
  builder = Nokogiri::XML::Builder.new(:encoding => ENCODING) do |xml|
    xml.send('xdr:wsDr', :'xmlns:xdr'=>XML_NS_XDR, :'xmlns:a'=>XML_NS_A) {
      anchors.each {|anchor| anchor.to_xml(xml) }
    }        
  end
  builder.to_xml
end