From 8cf0296bbc16e8eb535e9af932eed2557d5e66d2 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Thu, 1 Dec 2011 14:11:42 +0900 Subject: removing generated yard docs from repository --- doc/Axlsx/Pie3DChart.html | 482 ---------------------------------------------- 1 file changed, 482 deletions(-) delete mode 100644 doc/Axlsx/Pie3DChart.html (limited to 'doc/Axlsx/Pie3DChart.html') diff --git a/doc/Axlsx/Pie3DChart.html b/doc/Axlsx/Pie3DChart.html deleted file mode 100644 index 21cd7df4..00000000 --- a/doc/Axlsx/Pie3DChart.html +++ /dev/null @@ -1,482 +0,0 @@ - - - - - - Class: Axlsx::Pie3DChart - - — AXLSX - - - - - - - - - - - - - - - - - - - - - - -

Class: Axlsx::Pie3DChart - - - -

- -
- -
Inherits:
-
- Chart - -
    -
  • Object
  • - - - - - -
- show all - -
- - - - - - - - - -
Defined in:
-
lib/axlsx/drawing/pie_3D_chart.rb
- -
-
- -

Overview

-
- -

The Pie3DChart is a three dimentional piechart (who would have guessed?) -that you can add to your worksheet.

- - -
-
-
- - -

See Also:

- - -
- - - - - - - - - - -

Instance Attribute Summary

- -

Attributes inherited from Chart

-

graphic_frame, series, series_type, show_legend, style, title, view3D

- - - -

- Instance Method Summary - (collapse) -

- - - - - - - - - - - - -

Methods inherited from Chart

-

#add_series, #end_at, #from, #index, #pn, #start_at, #to

-
-

Constructor Details

- -
-

- - - (Pie3DChart) initialize(frame, options = {}) - - - -

-
- -

Creates a new pie chart object

- - -
-
-
-

Parameters:

-
    - -
  • - - frame - - - (GraphicFrame) - - - - — -
    -

    The workbook that owns this chart.

    -
    - -
  • - -
  • - - options - - - (Hash) - - - (defaults to: {}) - - - — -
    -

    a customizable set of options

    -
    - -
  • - -
- - - - - - -

Options Hash (options):

-
    - -
  • - title - (Cell, String) - - - - -
  • - -
  • - show_legend - (Boolean) - - - - -
  • - -
  • - grouping - (Symbol) - - - - -
  • - -
  • - gapDepth - (String) - - - - -
  • - -
  • - rotX - (Integer) - - - - -
  • - -
  • - hPercent - (String) - - - - -
  • - -
  • - rotY - (Integer) - - - - -
  • - -
  • - depthPercent - (String) - - - - -
  • - -
  • - rAngAx - (Boolean) - - - - -
  • - -
  • - perspective - (Integer) - - - - -
  • - -
- - - -

See Also:

- - -
- - - - -
-
-
-
-24
-25
-26
-27
-28
-
-
# File 'lib/axlsx/drawing/pie_3D_chart.rb', line 24
-
-def initialize(frame, options={})
-  super(frame, options)
-  @series_type = PieSeries
-  @view3D = View3D.new({:rotX=>30, :perspective=>30}.merge(options))
-end
-
-
-
- -
- - -
-

Instance Method Details

- - -
-

- - - (String) to_xml - - - -

-
- -

Serializes the pie chart

- - -
-
-
- -

Returns:

-
    - -
  • - - - (String) - - - -
  • - -
- -
- - - - -
-
-
-
-32
-33
-34
-35
-36
-37
-38
-39
-
-
# File 'lib/axlsx/drawing/pie_3D_chart.rb', line 32
-
-def to_xml
-  super() do |xml|
-    xml.send('c:pie3DChart') {
-      xml.send('c:varyColors', :val=>1)
-      @series.each { |ser| ser.to_xml(xml) }
-    }                      
-  end
-end
-
-
-
- -
- -
- - - - - \ No newline at end of file -- cgit v1.2.3