diff options
| author | Randy Morgan <[email protected]> | 2013-04-19 23:34:50 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2013-04-19 23:34:50 +0900 |
| commit | 08f04d573d00e91bb92d4d727f56d4bb21259eb0 (patch) | |
| tree | 6cc96940c4529af386ce7d811ccd9943c705be30 /lib/axlsx/drawing/axis.rb | |
| parent | db18c28df9fe5c44404e5f9af70a3db14a4b1f9a (diff) | |
| download | caxlsx-08f04d573d00e91bb92d4d727f56d4bb21259eb0.tar.gz caxlsx-08f04d573d00e91bb92d4d727f56d4bb21259eb0.zip | |
Added prep for 1.3.6 release
Diffstat (limited to 'lib/axlsx/drawing/axis.rb')
| -rw-r--r-- | lib/axlsx/drawing/axis.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/axlsx/drawing/axis.rb b/lib/axlsx/drawing/axis.rb index 16c087a2..32e40373 100644 --- a/lib/axlsx/drawing/axis.rb +++ b/lib/axlsx/drawing/axis.rb @@ -7,7 +7,7 @@ module Axlsx include Axlsx::OptionsParser # Creates an Axis object - # @param [Integer] cross_axis the perpendicular axis + # @option options [Axis] cross_axis the perpendicular axis # @option options [Symbol] ax_pos # @option options [Symbol] crosses # @option options [Symbol] tick_lbl_pos @@ -90,7 +90,9 @@ module Axlsx def color=(color_rgb) @color = color_rgb end - + + # The crossing axis for this axis + # @param [Axis] axis def cross_axis=(axis) DataTypeValidator.validate "#{self.class}.cross_axis", [Axis], axis @cross_axis = axis |
