Sha256: 994d029ce66fa859b20ad100ebb12d35f60262f0a5b22a55a05db26b01c1fed7
Contents?: true
Size: 625 Bytes
Versions: 22
Compression:
Stored size: 625 Bytes
Contents
# encoding: UTF-8 module Axlsx # A series title is a Title with a slightly different serialization than chart titles. class SeriesTitle < Title # Serializes the object # @param [String] str # @return [String] def to_xml_string(str = '') str << '<c:tx>' str << '<c:strRef>' str << '<c:f>' << Axlsx::cell_range([@cell]) << '</c:f>' str << '<c:strCache>' str << '<c:ptCount val="1"/>' str << '<c:pt idx="0">' str << '<c:v>' << @text << '</c:v>' str << '</c:pt>' str << '</c:strCache>' str << '</c:strRef>' str << '</c:tx>' end end end
Version data entries
22 entries across 22 versions & 2 rubygems