blob: 952dc10e819945eb2d08a96342807e3c4df1f18a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# encoding: UTF-8
module Axlsx
# The ValAxisData class manages the values for a chart value series.
class NamedAxisData < CatAxisData
def initialize(name, data=[])
super(data)
@name = name
end
def to_xml_string(str = '')
str << '<c:' << @name.to_s << '>'
str << '<c:numRef>'
str << '<c:f>' << Axlsx::cell_range(@list) << '</c:f>'
str << '<c:numCache>'
str << '<c:formatCode>General</c:formatCode>'
str << '<c:ptCount val="' << size.to_s << '"/>'
each_with_index do |item, index|
v = item.is_a?(Cell) ? item.value.to_s : item
str << '<c:pt idx="' << index.to_s << '"><c:v>' << v << '</c:v></c:pt>'
end
str << '</c:numCache>'
str << '</c:numRef>'
str << '</c:' << @name.to_s << '>'
end
end
end
|