From 8cf0296bbc16e8eb535e9af932eed2557d5e66d2 Mon Sep 17 00:00:00 2001 From: Randy Morgan Date: Thu, 1 Dec 2011 14:11:42 +0900 Subject: removing generated yard docs from repository --- doc/Axlsx/SerAxis.html | 625 ------------------------------------------------- 1 file changed, 625 deletions(-) delete mode 100644 doc/Axlsx/SerAxis.html (limited to 'doc/Axlsx/SerAxis.html') diff --git a/doc/Axlsx/SerAxis.html b/doc/Axlsx/SerAxis.html deleted file mode 100644 index 34b87079..00000000 --- a/doc/Axlsx/SerAxis.html +++ /dev/null @@ -1,625 +0,0 @@ - - - - - - Class: Axlsx::SerAxis - - — AXLSX - - - - - - - - - - - - - - - - - - - - - - -

Class: Axlsx::SerAxis - - - -

- -
- -
Inherits:
-
- Axis - -
    -
  • Object
  • - - - - - -
- show all - -
- - - - - - - - - -
Defined in:
-
lib/axlsx/drawing/ser_axis.rb
- -
-
- -

Overview

-
- -

A SerAxis object defines a series axis

- - -
-
-
- - -
- - - - - -

Instance Attribute Summary (collapse)

- - - - - - - - - -

Attributes inherited from Axis

-

axId, axPos, crossAx, crosses, format_code, scaling, tickLblPos

- - - -

- Instance Method Summary - (collapse) -

- - - - - - - - - -
-

Constructor Details

- -
-

- - - (SerAxis) initialize(axId, crossAx, options = {}) - - - -

-
- -

Creates a new SerAxis object

- - -
-
-
-

Parameters:

-
    - -
  • - - axId - - - (Integer) - - - - — -
    -

    the id of this axis. Inherited

    -
    - -
  • - -
  • - - crossAx - - - (Integer) - - - - — -
    -

    the id of the perpendicular axis. Inherited

    -
    - -
  • - -
  • - - options - - - (Hash) - - - (defaults to: {}) - - - — -
    -

    a customizable set of options

    -
    - -
  • - -
- - - - - - - - -

Options Hash (options):

-
    - -
  • - axPos. - (Symbol) - - - - —
    -

    Inherited

    -
    -
  • - -
  • - tickLblPos. - (Symbol) - - - - —
    -

    Inherited

    -
    -
  • - -
  • - crosses. - (Symbol) - - - - —
    -

    Inherited

    -
    -
  • - -
  • - tickLblSkip - (Integer) - - - - -
  • - -
  • - tickMarkSkip - (Integer) - - - - -
  • - -
- - - -
- - - - -
-
-
-
-21
-22
-23
-24
-
-
# File 'lib/axlsx/drawing/ser_axis.rb', line 21
-
-def initialize(axId, crossAx, options={})
-  @tickLblSkip, @tickMarkSkip = nil, nil
-  super(axId, crossAx, options)
-end
-
-
-
- -
- -
-

Instance Attribute Details

- - - - -
-

- - - (Integer) tickLblSkip - - - -

-
- -

The number of tick lables to skip between labels

- - -
-
-
- -

Returns:

-
    - -
  • - - - (Integer) - - - -
  • - -
- -
- - - - -
-
-
-
-7
-8
-9
-
-
# File 'lib/axlsx/drawing/ser_axis.rb', line 7
-
-def tickLblSkip
-  @tickLblSkip
-end
-
-
-
- - - - -
-

- - - (Boolean) tickMarkSkip - - - -

-
- -

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

- - -
-
-
- -

Returns:

-
    - -
  • - - - (Boolean) - - - -
  • - -
- -
- - - - -
-
-
-
-11
-12
-13
-
-
# File 'lib/axlsx/drawing/ser_axis.rb', line 11
-
-def tickMarkSkip
-  @tickMarkSkip
-end
-
-
-
- -
- - -
-

Instance Method Details

- - -
-

- - - (String) to_xml(xml) - - - -

-
- -

Serializes the series axis

- - -
-
-
-

Parameters:

-
    - -
  • - - xml - - - (Nokogiri::XML::Builder) - - - - — -
    -

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

    -
    - -
  • - -
- -

Returns:

-
    - -
  • - - - (String) - - - -
  • - -
- -
- - - - -
-
-
-
-35
-36
-37
-38
-39
-40
-41
-
-
# 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
-
-
-
- -
- -
- - - - - \ No newline at end of file -- cgit v1.2.3