Class: OoxmlParser::CommonChartData

Inherits:
OOXMLDocumentObject show all
Defined in:
lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart/plot_area/common_chart_data.rb

Overview

Parsing common chart data

Instance Attribute Summary collapse

Attributes inherited from OOXMLDocumentObject

#parent

Instance Method Summary collapse

Methods inherited from OOXMLDocumentObject

#==, #boolean_attribute_value, #parse_xml, #with_data?

Methods included from OoxmlObjectAttributeHelper

#attribute_enabled?, #option_enabled?

Methods included from OoxmlDocumentObjectHelper

#to_hash

Constructor Details

#initialize(parent: nil) ⇒ CommonChartData

Returns a new instance of CommonChartData.



11
12
13
14
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart/plot_area/common_chart_data.rb', line 11

def initialize(parent: nil)
  @series = []
  super
end

Instance Attribute Details

#groupingValuedChild (readonly)

Returns type of grouping.

Returns:



7
8
9
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart/plot_area/common_chart_data.rb', line 7

def grouping
  @grouping
end

#seriesArray<Series> (readonly)

Returns series data.

Returns:

  • (Array<Series>)

    series data



9
10
11
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart/plot_area/common_chart_data.rb', line 9

def series
  @series
end

Instance Method Details

#parse(node) ⇒ CommonChartData

Parse CommonChartData object

Parameters:

  • node (Nokogiri::XML:Element)

    node to parse

Returns:



19
20
21
22
23
24
25
26
27
28
29
# File 'lib/ooxml_parser/common_parser/common_data/alternate_content/chart/chart/plot_area/common_chart_data.rb', line 19

def parse(node)
  node.xpath('*').each do |node_child|
    case node_child.name
    when 'grouping'
      @grouping = ValuedChild.new(:symbol, parent: self).parse(node_child)
    when 'ser'
      @series << Series.new(parent: self).parse(node_child)
    end
  end
  self
end