From 4d16bfc43780e5d3f7368625700b583e3e98217a Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Sun, 27 Nov 2011 18:11:42 +0900 Subject: adding in row_style and col_style methods to worksheet and active record 'acts_as_axlsx' to provide to_xlsx. --- doc/Axlsx/ValAxis.html | 90 +++++++++++++++++++++++++++++--------------------- 1 file changed, 52 insertions(+), 38 deletions(-) (limited to 'doc/Axlsx/ValAxis.html') diff --git a/doc/Axlsx/ValAxis.html b/doc/Axlsx/ValAxis.html index 252c78df..6e8f501c 100644 --- a/doc/Axlsx/ValAxis.html +++ b/doc/Axlsx/ValAxis.html @@ -96,8 +96,9 @@

Overview

- -

the ValAxis class defines a chart value axis.

+

+the ValAxis class defines a chart value axis. +

@@ -133,8 +134,9 @@ -
-

This element specifies how the value axis crosses the category axis.

+

+This element specifies how the value axis crosses the category axis. +

@@ -179,8 +181,9 @@ -
-

Creates a new ValAxis object.

+

+Creates a new ValAxis object. +

@@ -202,8 +205,9 @@ -
-

Serializes the value axis.

+

+Serializes the value axis. +

@@ -229,8 +233,9 @@

- -

Creates a new ValAxis object

+

+Creates a new ValAxis object +

@@ -249,8 +254,9 @@ — -
-

the id of this axis

+

+the id of this axis +

@@ -265,8 +271,9 @@ — -
-

the id of the perpendicular axis

+

+the id of the perpendicular axis +

@@ -283,8 +290,9 @@ — -
-

a customizable set of options

+

+a customizable set of options +

@@ -355,10 +363,11 @@
# File 'lib/axlsx/drawing/val_axis.rb', line 17
 
-def initialize(axId, crossAx, options={})
-  self.crossBetween = :between
-  super(axId, crossAx, options)
-end
+def initialize(axId, crossAx, options={}) + self.crossBetween = :between + super(axId, crossAx, options) +end + @@ -381,9 +390,10 @@

- -

This element specifies how the value axis crosses the category axis. must -be one of [:between, :midCat]

+

+This element specifies how the value axis crosses the category axis. must +be one of [:between, :midCat] +

@@ -417,9 +427,10 @@ be one of [:between, :midCat]

# File 'lib/axlsx/drawing/val_axis.rb', line 8
 
-def crossBetween
-  @crossBetween
-end
+def crossBetween + @crossBetween +end + @@ -441,8 +452,9 @@ be one of [:between, :midCat]

- -

Serializes the value axis

+

+Serializes the value axis +

@@ -461,8 +473,9 @@ be one of [:between, :midCat]

— -
-

The document builder instance this objects xml will be added to.

+

+The document builder instance this objects xml will be added to. +

@@ -499,12 +512,13 @@ be one of [:between, :midCat]

# File 'lib/axlsx/drawing/val_axis.rb', line 27
 
-def to_xml(xml)
-  xml.send('c:valAx') {
-    super(xml)
-    xml.send('c:crossBetween', :val=>@crossBetween)
-  }
-end
+def to_xml(xml) + xml.send('c:valAx') { + super(xml) + xml.send('c:crossBetween', :val=>@crossBetween) + } +end + @@ -515,9 +529,9 @@ be one of [:between, :midCat]

-- cgit v1.2.3