Class: Axlsx::PieSeries

Inherits:
Series
  • Object
show all
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

Attributes inherited from Series

#chart, #title

Instance Method Summary collapse

Methods inherited from Series

#index, #order, #order=

Methods included from OptionsParser

#parse_options

Constructor Details

#initialize(chart, options = {}) ⇒ PieSeries

Creates a new series

Parameters:

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

    a customizable set of options

Options Hash (options):

  • data (Array, SimpleTypedList)
  • labels (Array, SimpleTypedList)
  • title (String)
  • explosion (Integer)


30
31
32
33
34
35
36
# File 'lib/axlsx/drawing/pie_series.rb', line 30

def initialize(chart, options = {})
  @explosion = nil
  @colors = []
  super(chart, options)
  self.labels = AxDataSource.new(data: options[:labels]) unless options[:labels].nil?
  self.data = NumDataSource.new(options) unless options[:data].nil?
end

Instance Attribute Details

#colorsObject

An array of rgb colors to apply to your bar chart.



22
23
24
# File 'lib/axlsx/drawing/pie_series.rb', line 22

def colors
  @colors
end

#dataSimpleTypedList

The data for this series.

Returns:

  • (SimpleTypedList)


11
12
13
# File 'lib/axlsx/drawing/pie_series.rb', line 11

def data
  @data
end

#explosionIntegert

The explosion for this series

Returns:

  • (Integert)


19
20
21
# File 'lib/axlsx/drawing/pie_series.rb', line 19

def explosion
  @explosion
end

#labelsSimpleTypedList

The labels for this series.

Returns:

  • (SimpleTypedList)


15
16
17
# File 'lib/axlsx/drawing/pie_series.rb', line 15

def labels
  @labels
end

Instance Method Details

#to_xml_string(str = +'')) ⇒ String

Serializes the object

Parameters:

  • str (String) (defaults to: +''))

Returns:

  • (String)


53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/axlsx/drawing/pie_series.rb', line 53

def to_xml_string(str = +'')
  super(str) do
    str << '<c:explosion val="' << @explosion.to_s << '"/>' unless @explosion.nil?
    colors.each_with_index do |c, index|
      str << '<c:dPt>'
      str << '<c:idx val="' << index.to_s << '"/>'
      str << '<c:spPr><a:solidFill>'
      str << '<a:srgbClr val="' << c << '"/>'
      str << '</a:solidFill></c:spPr></c:dPt>'
    end
    @labels.to_xml_string str unless @labels.nil?
    @data.to_xml_string str unless @data.nil?
  end
  str
end