Class: Axlsx::BarSeries
- Inherits:
-
Series
- Object
- Series
- Axlsx::BarSeries
- Defined in:
- lib/axlsx/drawing/bar_series.rb
Overview
The recommended way to manage series is to use Chart#add_series
A BarSeries defines the title, data and labels for bar charts
Instance Attribute Summary (collapse)
-
- (Array, SimpleTypedList) data
The data for this series.
-
- (Array, SimpleTypedList) labels
The labels for this series.
-
- (Symbol) shape
The shabe of the bars or columns must be one of [:percentStacked, :clustered, :standard, :stacked].
Attributes inherited from Series
Instance Method Summary (collapse)
-
- (BarSeries) initialize(chart, options = {})
constructor
Creates a new series.
-
- (String) to_xml(xml)
Serializes the series.
Constructor Details
- (BarSeries) initialize(chart, options = {})
Creates a new series
28 29 30 31 32 33 |
# File 'lib/axlsx/drawing/bar_series.rb', line 28 def initialize(chart, ={}) @shape = :box super(chart, ) self.labels = CatAxisData.new([:labels]) unless [:labels].nil? self.data = ValAxisData.new([:data]) unless [:data].nil? end |
Instance Attribute Details
- (Array, SimpleTypedList) data
The data for this series.
11 12 13 |
# File 'lib/axlsx/drawing/bar_series.rb', line 11 def data @data end |
- (Array, SimpleTypedList) labels
The labels for this series.
15 16 17 |
# File 'lib/axlsx/drawing/bar_series.rb', line 15 def labels @labels end |
- (Symbol) shape
The shabe of the bars or columns must be one of [:percentStacked, :clustered, :standard, :stacked]
20 21 22 |
# File 'lib/axlsx/drawing/bar_series.rb', line 20 def shape @shape end |
Instance Method Details
- (String) to_xml(xml)
Serializes the series
43 44 45 46 47 48 49 |
# File 'lib/axlsx/drawing/bar_series.rb', line 43 def to_xml(xml) super(xml) do |xml| @labels.to_xml(xml) unless @labels.nil? @data.to_xml(xml) unless @data.nil? xml.send('c:shape', :val=>@shape) end end |