Class: Axlsx::Series
- Inherits:
-
Object
- Object
- Axlsx::Series
- Defined in:
- lib/axlsx/drawing/series.rb
Overview
Note:
The recommended way to manage series is to use Chart#add_series
A Series defines the common series attributes and is the super class for all concrete series types.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#chart ⇒ Chart
readonly
The chart that owns this series.
-
#title ⇒ SeriesTitle
The title of the series.
Instance Method Summary collapse
-
#index ⇒ Integer
The index of this series in the chart's series.
-
#initialize(chart, options = {}) ⇒ Series
constructor
Creates a new series.
-
#order ⇒ Integer
The order of this series in the chart's series.
- #order=(v) ⇒ Object
Constructor Details
#initialize(chart, options = {}) ⇒ Series
Creates a new series
21 22 23 24 25 26 27 28 |
# File 'lib/axlsx/drawing/series.rb', line 21 def initialize(chart, ={}) @order = nil self.chart = chart @chart.series << self .each do |o| self.send("#{o[0]}=", o[1]) if self.respond_to? "#{o[0]}=" end end |
Instance Attribute Details
#chart ⇒ Chart
The chart that owns this series
11 12 13 |
# File 'lib/axlsx/drawing/series.rb', line 11 def chart @chart end |
#title ⇒ SeriesTitle
The title of the series
15 16 17 |
# File 'lib/axlsx/drawing/series.rb', line 15 def title @title end |
Instance Method Details
#index ⇒ Integer
The index of this series in the chart's series.
33 34 35 |
# File 'lib/axlsx/drawing/series.rb', line 33 def index @chart.series.index(self) end |
#order ⇒ Integer
The order of this series in the chart's series. By default the order is the index of the series.
40 41 42 |
# File 'lib/axlsx/drawing/series.rb', line 40 def order @order || index end |
#order=(v) ⇒ Object
45 |
# File 'lib/axlsx/drawing/series.rb', line 45 def order=(v) Axlsx::validate_unsigned_int(v); @order = v; end |