From 11303a4d6664d9a7ff7bc408035d2ab70378a375 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Sat, 26 Nov 2011 13:20:57 +0900 Subject: adding in support for ruby 1.9.3 release version 1.0.9 --- doc/Axlsx/SerAxis.html | 140 +++++++++++++++++++++---------------------------- 1 file changed, 61 insertions(+), 79 deletions(-) (limited to 'doc/Axlsx/SerAxis.html') diff --git a/doc/Axlsx/SerAxis.html b/doc/Axlsx/SerAxis.html index cd476df7..bec08bde 100644 --- a/doc/Axlsx/SerAxis.html +++ b/doc/Axlsx/SerAxis.html @@ -6,7 +6,7 @@ Class: Axlsx::SerAxis - — Documentation by YARD 0.7.3 + — AXLSX @@ -96,9 +96,8 @@

Overview

-

-A SerAxis object defines a series axis -

+ +

A SerAxis object defines a series axis

@@ -134,9 +133,8 @@ A SerAxis object defines a series axis -

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

+
+

The number of tick lables to skip between labels.

@@ -161,9 +159,8 @@ The number of tick lables to skip between labels. -

-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.

@@ -208,9 +205,8 @@ The number of tickmarks to be skipped before the next one is rendered. -

-Creates a new SerAxis object. -

+
+

Creates a new SerAxis object.

@@ -232,9 +228,8 @@ Creates a new SerAxis object. -

-Serializes the series axis. -

+
+

Serializes the series axis.

@@ -260,9 +255,8 @@ Serializes the series axis.

-

-Creates a new SerAxis object -

+ +

Creates a new SerAxis object

@@ -281,9 +275,8 @@ Creates a new SerAxis object — -

-the id of this axis. Inherited -

+
+

the id of this axis. Inherited

@@ -298,9 +291,8 @@ the id of this axis. Inherited — -

-the id of the perpendicular axis. Inherited -

+
+

the id of the perpendicular axis. Inherited

@@ -317,9 +309,8 @@ the id of the perpendicular axis. Inherited — -

-a customizable set of options -

+
+

a customizable set of options

@@ -342,9 +333,8 @@ a customizable set of options - —

-Inherited -

+ —
+

Inherited

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

-Inherited -

+ —
+

Inherited

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

-Inherited -

+ —
+

Inherited

@@ -402,15 +390,16 @@ Inherited 21 22 -23 +23 +24
# File 'lib/axlsx/drawing/ser_axis.rb', line 21
 
-def initialize(axId, crossAx, options={})
-  super(axId, crossAx, options)
-end
-
+def initialize(axId, crossAx, options={}) + @tickLblSkip, @tickMarkSkip = nil, nil + super(axId, crossAx, options) +end @@ -433,9 +422,8 @@ Inherited

-

-The number of tick lables to skip between labels -

+ +

The number of tick lables to skip between labels

@@ -469,10 +457,9 @@ The number of tick lables to skip between labels
# File 'lib/axlsx/drawing/ser_axis.rb', line 7
 
-def tickLblSkip
-  @tickLblSkip
-end
-
+def tickLblSkip + @tickLblSkip +end @@ -490,9 +477,8 @@ The number of tick lables to skip between labels

-

-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.

@@ -526,10 +512,9 @@ The number of tickmarks to be skipped before the next one is rendered.
# File 'lib/axlsx/drawing/ser_axis.rb', line 11
 
-def tickMarkSkip
-  @tickMarkSkip
-end
-
+def tickMarkSkip + @tickMarkSkip +end @@ -551,9 +536,8 @@ The number of tickmarks to be skipped before the next one is rendered.

-

-Serializes the series axis -

+ +

Serializes the series axis

@@ -572,9 +556,8 @@ Serializes the series axis — -

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

+
+

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

@@ -601,25 +584,24 @@ The document builder instance this objects xml will be added to.
 
 
-31
-32
-33
-34
 35
 36
-37
+37 +38 +39 +40 +41 -
# File 'lib/axlsx/drawing/ser_axis.rb', line 31
-
-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
-
+
# 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
@@ -630,9 +612,9 @@ The document builder instance this objects xml will be added to.
-- cgit v1.2.3