blob: c28e8a5810cba8d9513d4a5c679dad5e6d0a1531 (
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
|
# encoding: UTF-8
module Axlsx
# The ValAxisData class manages the values for a chart value series.
class ValAxisData < CatAxisData
def to_xml_string(str = '')
str << '<c:val>'
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:val>'
end
end
end
|