Class: Axlsx::NumDataSource
- Inherits:
-
Object
- Object
- Axlsx::NumDataSource
- Includes:
- OptionsParser
- Defined in:
- lib/axlsx/drawing/num_data_source.rb
Overview
A numeric data source for use by charts.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#data ⇒ Object
readonly
Returns the value of attribute data.
-
#tag_name ⇒ Symbol
The tag name to use when serializing this data source.
Class Method Summary collapse
-
.allowed_tag_names ⇒ Array
allowed element tag names.
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ NumDataSource
constructor
creates a new NumDataSource object.
-
#to_xml_string(str = +'')) ⇒ Object
serialize the object.
Methods included from OptionsParser
Constructor Details
#initialize(options = {}) ⇒ NumDataSource
creates a new NumDataSource object
11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/axlsx/drawing/num_data_source.rb', line 11 def initialize( = {}) # override these three in child classes @data_type ||= NumData @tag_name ||= :val @ref_tag_name ||= :numRef @f = nil @data = @data_type.new() if [:data] && [:data].first.is_a?(Cell) @f = Axlsx.cell_range([:data]) end end |
Instance Attribute Details
#data ⇒ Object (readonly)
Returns the value of attribute data.
30 31 32 |
# File 'lib/axlsx/drawing/num_data_source.rb', line 30 def data @data end |
#tag_name ⇒ Symbol
The tag name to use when serializing this data source. Only items defined in allowed_tag_names are allowed
28 29 30 |
# File 'lib/axlsx/drawing/num_data_source.rb', line 28 def tag_name @tag_name end |
Class Method Details
.allowed_tag_names ⇒ Array
allowed element tag names
34 35 36 |
# File 'lib/axlsx/drawing/num_data_source.rb', line 34 def self.allowed_tag_names [:yVal, :val, :bubbleSize] end |
Instance Method Details
#to_xml_string(str = +'')) ⇒ Object
serialize the object
47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/axlsx/drawing/num_data_source.rb', line 47 def to_xml_string(str = +'') str << '<c:' << tag_name.to_s << '>' if @f str << '<c:' << @ref_tag_name.to_s << '>' str << '<c:f>' << @f.to_s << '</c:f>' end @data.to_xml_string str if @f str << '</c:' << @ref_tag_name.to_s << '>' end str << '</c:' << tag_name.to_s << '>' end |