From 058faf2581970fa18c314ad07f5658adeca32c69 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Sun, 27 Nov 2011 22:08:55 +0900 Subject: update to README --- doc/Axlsx/SerAxis.html | 122 +++++++++++++++++++++---------------------------- 1 file changed, 51 insertions(+), 71 deletions(-) (limited to 'doc/Axlsx/SerAxis.html') diff --git a/doc/Axlsx/SerAxis.html b/doc/Axlsx/SerAxis.html index 6d122772..bd7e6573 100644 --- a/doc/Axlsx/SerAxis.html +++ b/doc/Axlsx/SerAxis.html @@ -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

@@ -408,11 +396,10 @@ Inherited
# 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 @@ -435,9 +422,8 @@ Inherited

-

-The number of tick lables to skip between labels -

+ +

The number of tick lables to skip between labels

@@ -471,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 @@ -492,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.

@@ -528,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 @@ -553,9 +536,8 @@ The number of tickmarks to be skipped before the next one is rendered.

-

-Serializes the series axis -

+ +

Serializes the series axis

@@ -574,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.

@@ -614,14 +595,13 @@ The document builder instance this objects xml will be added to.
# 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 @@ -632,9 +612,9 @@ The document builder instance this objects xml will be added to.
-- cgit v1.2.3