Class: Axlsx::LineSeries

Inherits:
Series
  • Object
show all
Defined in:
lib/axlsx/drawing/line_series.rb

Overview

Note:

The recommended way to manage series is to use Chart#add_series

A LineSeries defines the title, data and labels for line charts

See Also:

Instance Attribute Summary (collapse)

Attributes inherited from Series

chart, index, order, title

Instance Method Summary (collapse)

Constructor Details

- (LineSeries) initialize(chart, options = {})

Creates a new series

Parameters:

  • chart (Chart)
  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):



20
21
22
23
24
# File 'lib/axlsx/drawing/line_series.rb', line 20

def initialize(chart, options={})
  super(chart, options)
  self.labels = CatAxisData.new(options[:labels]) unless options[:labels].nil?
  self.data = ValAxisData.new(options[:data]) unless options[:data].nil?
end

Instance Attribute Details

- (ValAxisData) data

The data for this series.

Returns:



10
11
12
# File 'lib/axlsx/drawing/line_series.rb', line 10

def data
  @data
end

- (CatAxisData) labels

The labels for this series.

Returns:



14
15
16
# File 'lib/axlsx/drawing/line_series.rb', line 14

def labels
  @labels
end

Instance Method Details

- (String) to_xml(xml)

Serializes the series

Parameters:

  • xml (Nokogiri::XML::Builder)

    The document builder instance this objects xml will be added to.

Returns:

  • (String)


29
30
31
32
33
34
# File 'lib/axlsx/drawing/line_series.rb', line 29

def to_xml(xml)
  super(xml) do |xml|
    @labels.to_xml(xml) unless @labels.nil?
    @data.to_xml(xml) unless @data.nil?
  end      
end