Sha256: e68f4013b2246b9759c42041fab07252c8fd0be094fbcfcc25c9edfee8fe351b
Contents?: true
Size: 909 Bytes
Versions: 40
Compression:
Stored size: 909 Bytes
Contents
# frozen_string_literal: true module OoxmlParser # Cell Range of Chart class ChartCellsRange < OOXMLDocumentObject attr_accessor :list, :points def initialize(parent: nil) @list = '' @points = [] super end # Parse ChartCellsRange object # @param node [Nokogiri::XML:Element] node to parse # @return [ChartCellsRange] result of parsing def parse(node) @list = node.xpath('c:f')[0].text.split('!').first coordinates = Coordinates.parser_coordinates_range(node.xpath('c:f')[0].text) # .split('!')[1].gsub('$', '')) return self unless coordinates node.xpath('c:numCache/c:pt').each_with_index do |point_node, index| point = ChartPoint.new(coordinates[index]) point.value = point_node.xpath('c:v').first.text.to_f unless point_node.xpath('c:v').first.nil? @points << point end self end end end
Version data entries
40 entries across 40 versions & 1 rubygems