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/SerAxis.html | 122 ++++++++++++++++++++++++++++--------------------- 1 file changed, 71 insertions(+), 51 deletions(-) (limited to 'doc/Axlsx/SerAxis.html') diff --git a/doc/Axlsx/SerAxis.html b/doc/Axlsx/SerAxis.html index bec08bde..4d5cdef3 100644 --- a/doc/Axlsx/SerAxis.html +++ b/doc/Axlsx/SerAxis.html @@ -96,8 +96,9 @@

Overview

- -

A SerAxis object defines a series axis

+

+A SerAxis object defines a series axis +

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

The number of tick lables to skip between labels.

+

+The number of tick lables to skip between labels. +

@@ -159,8 +161,9 @@ -
-

The number of tickmarks to be skipped before the next one is rendered.

+

+The number of tickmarks to be skipped before the next one is rendered. +

@@ -205,8 +208,9 @@ -
-

Creates a new SerAxis object.

+

+Creates a new SerAxis object. +

@@ -228,8 +232,9 @@ -
-

Serializes the series axis.

+

+Serializes the series axis. +

@@ -255,8 +260,9 @@

- -

Creates a new SerAxis object

+

+Creates a new SerAxis object +

@@ -275,8 +281,9 @@ — -
-

the id of this axis. Inherited

+

+the id of this axis. Inherited +

@@ -291,8 +298,9 @@ — -
-

the id of the perpendicular axis. Inherited

+

+the id of the perpendicular axis. Inherited +

@@ -309,8 +317,9 @@ — -
-

a customizable set of options

+

+a customizable set of options +

@@ -333,8 +342,9 @@ - —
-

Inherited

+ —

+Inherited +

@@ -344,8 +354,9 @@ - —
-

Inherited

+ —

+Inherited +

@@ -355,8 +366,9 @@ - —
-

Inherited

+ —

+Inherited +

@@ -396,10 +408,11 @@
# File 'lib/axlsx/drawing/ser_axis.rb', line 21
 
-def initialize(axId, crossAx, options={})
-  @tickLblSkip, @tickMarkSkip = nil, nil
-  super(axId, crossAx, options)
-end
+def initialize(axId, crossAx, options={}) + @tickLblSkip, @tickMarkSkip = nil, nil + super(axId, crossAx, options) +end + @@ -422,8 +435,9 @@

- -

The number of tick lables to skip between labels

+

+The number of tick lables to skip between labels +

@@ -457,9 +471,10 @@
# File 'lib/axlsx/drawing/ser_axis.rb', line 7
 
-def tickLblSkip
-  @tickLblSkip
-end
+def tickLblSkip + @tickLblSkip +end + @@ -477,8 +492,9 @@

- -

The number of tickmarks to be skipped before the next one is rendered.

+

+The number of tickmarks to be skipped before the next one is rendered. +

@@ -512,9 +528,10 @@
# File 'lib/axlsx/drawing/ser_axis.rb', line 11
 
-def tickMarkSkip
-  @tickMarkSkip
-end
+def tickMarkSkip + @tickMarkSkip +end + @@ -536,8 +553,9 @@

- -

Serializes the series axis

+

+Serializes the series axis +

@@ -556,8 +574,9 @@ — -
-

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

+

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

@@ -595,13 +614,14 @@
# File 'lib/axlsx/drawing/ser_axis.rb', line 35
 
-def to_xml(xml)
-  xml.send('c:serAx') {
-    super(xml)
-    xml.send('c:tickLblSkip', :val=>@tickLblSkip) unless @tickLblSkip.nil?
-    xml.send('c:tickMarkSkip', :val=>@tickMarkSkip) unless @tickMarkSkip.nil?
-  }
-end
+def to_xml(xml) + xml.send('c:serAx') { + super(xml) + xml.send('c:tickLblSkip', :val=>@tickLblSkip) unless @tickLblSkip.nil? + xml.send('c:tickMarkSkip', :val=>@tickMarkSkip) unless @tickMarkSkip.nil? + } +end + @@ -612,9 +632,9 @@
-- cgit v1.2.3