summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/drawing/bubble_chart.rb
blob: 6b879e05e1238d0ae415076b93fa242fe72de9bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# frozen_string_literal: true

module Axlsx
  # The BubbleChart allows you to insert a bubble chart into your worksheet
  # @see Worksheet#add_chart
  # @see Chart#add_series
  # @see README for an example
  class BubbleChart < Chart
    include Axlsx::OptionsParser

    # the x value axis
    # @return [ValAxis]
    def x_val_axis
      axes[:x_val_axis]
    end
    alias :xValAxis :x_val_axis

    # the y value axis
    # @return [ValAxis]
    def y_val_axis
      axes[:y_val_axis]
    end
    alias :yValAxis :y_val_axis

    # Creates a new bubble chart
    def initialize(frame, options = {})
      @vary_colors = 0

      super(frame, options)
      @series_type = BubbleSeries
      @d_lbls = nil
      parse_options options
    end

    # Serializes the object
    # @param [String] str
    # @return [String]
    def to_xml_string(str = +'')
      super(str) do
        str << '<c:bubbleChart>'
        str << '<c:varyColors val="' << vary_colors.to_s << '"/>'
        @series.each { |ser| ser.to_xml_string(str) }
        d_lbls.to_xml_string(str) if @d_lbls
        axes.to_xml_string(str, ids: true)
        str << '</c:bubbleChart>'
        axes.to_xml_string(str)
      end
      str
    end

    # The axes for the bubble chart. BubbleChart has an x_val_axis and
    # a y_val_axis
    # @return [Axes]
    def axes
      @axes ||= Axes.new(x_val_axis: ValAxis, y_val_axis: ValAxis)
    end
  end
end