Class: Axlsx::PieSeries
- Defined in:
- lib/axlsx/drawing/pie_series.rb
Overview
Note:
The recommended way to manage series is to use Chart#add_series
A PieSeries defines the data and labels and explosion for pie charts series.
Instance Attribute Summary collapse
-
#data ⇒ SimpleTypedList
readonly
The data for this series.
-
#explosion ⇒ Integert
The explosion for this series.
-
#labels ⇒ SimpleTypedList
readonly
The labels for this series.
Attributes inherited from Series
Instance Method Summary collapse
-
#initialize(chart, options = {}) ⇒ PieSeries
constructor
Creates a new series.
-
#to_xml_string(str = '') ⇒ String
Serializes the object.
Methods inherited from Series
Constructor Details
#initialize(chart, options = {}) ⇒ PieSeries
Creates a new series
28 29 30 31 32 33 |
# File 'lib/axlsx/drawing/pie_series.rb', line 28 def initialize(chart, ={}) @explosion = nil super(chart, ) self.labels = CatAxisData.new([:labels]) unless [:labels].nil? self.data = ValAxisData.new([:data]) unless [:data].nil? end |
Instance Attribute Details
#data ⇒ SimpleTypedList
The data for this series.
12 13 14 |
# File 'lib/axlsx/drawing/pie_series.rb', line 12 def data @data end |
#explosion ⇒ Integert
The explosion for this series
20 21 22 |
# File 'lib/axlsx/drawing/pie_series.rb', line 20 def explosion @explosion end |
#labels ⇒ SimpleTypedList
The labels for this series.
16 17 18 |
# File 'lib/axlsx/drawing/pie_series.rb', line 16 def labels @labels end |
Instance Method Details
#to_xml_string(str = '') ⇒ String
Serializes the object
41 42 43 44 45 46 47 48 |
# File 'lib/axlsx/drawing/pie_series.rb', line 41 def to_xml_string(str = '') super(str) do |str_inner| str_inner << '<c:explosion val="' << @explosion << '"/>' unless @explosion.nil? @labels.to_xml_string str_inner unless @labels.nil? @data.to_xml_string str_inner unless @data.nil? end str end |