Sha256: dbdcd1e4eec98b15fbeb210d66f1b7d4af71e39082aeac583c52bd3e49e036fb

Contents?: true

Size: 1.38 KB

Versions: 8

Compression:

Stored size: 1.38 KB

Contents

# encoding: UTF-8
module Axlsx


  # The Pie3DChart is a three dimentional piechart (who would have guessed?) that you can add to your worksheet.
  # @see Worksheet#add_chart
  # @see Chart#add_series
  # @see README for an example
  class Pie3DChart < Chart

    # Creates a new pie chart object
    # @param [GraphicFrame] frame The workbook that owns this chart.
    # @option options [Cell, String] title
    # @option options [Boolean] show_legend
    # @option options [Symbol] grouping
    # @option options [String] gap_depth
    # @option options [Integer] rot_x
    # @option options [String] h_percent
    # @option options [Integer] rot_y
    # @option options [String] depth_percent
    # @option options [Boolean] r_ang_ax
    # @option options [Integer] perspective
    # @see Chart
    # @see View3D
    def initialize(frame, options={})
      super(frame, options)
      @series_type = PieSeries
      @view_3D = View3D.new({:rot_x =>30, :perspective=>30}.merge(options))
      @d_lbls = nil
    end

    # Serializes the object
    # @param [String] str
    # @return [String]
    def to_xml_string(str = '')
      super(str) do |str_inner|

        str_inner << '<c:pie3DChart>'
        str_inner << '<c:varyColors val="1"/>'
        @series.each { |ser| ser.to_xml_string(str_inner) }
        d_lbls.to_xml_string(str) if @d_lbls
        str_inner << '</c:pie3DChart>'
      end
    end

  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
axlsx-1.3.4 lib/axlsx/drawing/pie_3D_chart.rb
axlsx-1.3.3 lib/axlsx/drawing/pie_3D_chart.rb
axlsx-1.3.2 lib/axlsx/drawing/pie_3D_chart.rb
axlsx-1.3.1 lib/axlsx/drawing/pie_3D_chart.rb
axlsx-1.2.3 lib/axlsx/drawing/pie_3D_chart.rb
axlsx-1.2.2 lib/axlsx/drawing/pie_3D_chart.rb
axlsx-1.2.1 lib/axlsx/drawing/pie_3D_chart.rb
axlsx-1.2.0 lib/axlsx/drawing/pie_3D_chart.rb