# 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 << '' str << '' str << ('' << Axlsx::cell_range([@cell]) << '') str << '' str << '' str << '' str << ('' << @text << '') str << '' str << '' str << '' str << '' end end end