From 6739c249e7bf3cf7d2132b2aa49b6faf6bebec29 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Wed, 23 Nov 2011 12:28:10 +0900 Subject: -refactoring chart position and axis data/category for chart. -additional specs and documentation improvements. --- doc/Axlsx/Line3DChart.html | 137 ++++++++++++++++++++++++++++++++++++--------- 1 file changed, 109 insertions(+), 28 deletions(-) (limited to 'doc/Axlsx/Line3DChart.html') diff --git a/doc/Axlsx/Line3DChart.html b/doc/Axlsx/Line3DChart.html index 589a6d54..3512d2a7 100644 --- a/doc/Axlsx/Line3DChart.html +++ b/doc/Axlsx/Line3DChart.html @@ -323,7 +323,7 @@ the category axis.

Attributes inherited from Chart

-

end_at, graphic_frame, index, pn, series, series_type, show_legend, start_at, style, title, view3D

+

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

@@ -396,7 +396,7 @@ Serializes the bar chart.

Methods inherited from Chart

-

#add_series

+

#add_series, #end_at, #from, #start_at, #to

Constructor Details

@@ -466,6 +466,24 @@ a customizable set of options

Options Hash (options):

+

See Also:

+ +
@@ -865,25 +946,25 @@ Serializes the bar chart
 
 
-76
-77
-78
-79
-80
-81
-82
-83
-84
-85
 86
 87
 88
 89
 90
-91
+91 +92 +93 +94 +95 +96 +97 +98 +99 +100 +101
 
 
-51
-52
-53
-54
-55
-56
-57
-58
-59
-60
 61
-62
+62 +63 +64 +65 +66 +67 +68 +69 +70 +71 +72
-
# File 'lib/axlsx/drawing/line_3D_chart.rb', line 51
+      
# File 'lib/axlsx/drawing/line_3D_chart.rb', line 61
 
 def initialize(frame, options={})
   @grouping = :standard
@@ -518,9 +599,9 @@ a customizable set of options
   @catAxis = CatAxis.new(@catAxId, @valAxId)
   @valAxis = ValAxis.new(@valAxId, @catAxId)
   @serAxis = SerAxis.new(@serAxId, @valAxId)
-  @view3D = View3D.new(:perspective=>30)
   super(frame, options)      
   @series_type = LineSeries
+  @view3D = View3D.new({:perspective=>30}.merge(options))
 end
 
-
# File 'lib/axlsx/drawing/line_3D_chart.rb', line 76
+      
# File 'lib/axlsx/drawing/line_3D_chart.rb', line 86
 
 def to_xml
   super() do |xml|
@@ -912,7 +993,7 @@ Serializes the bar chart
 
     
     
-- 
cgit v1.2.3