diff options
| author | Randy Morgan <[email protected]> | 2012-08-30 13:03:45 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-08-30 13:03:45 +0900 |
| commit | 98a94261cfe836afbb405fdb6acd065be07db205 (patch) | |
| tree | 4a85235a76490e5f934406e9c1d5b45149182aa7 | |
| parent | 5782f294135b5e02d69b3388a0c496892644c207 (diff) | |
| download | caxlsx-98a94261cfe836afbb405fdb6acd065be07db205.tar.gz caxlsx-98a94261cfe836afbb405fdb6acd065be07db205.zip | |
add none options for tick_lbl_pos
| -rw-r--r-- | lib/axlsx/drawing/axis.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/drawing/axis.rb b/lib/axlsx/drawing/axis.rb index e13426cd..12e4f481 100644 --- a/lib/axlsx/drawing/axis.rb +++ b/lib/axlsx/drawing/axis.rb @@ -102,7 +102,7 @@ module Axlsx # the position of the tick labels # must be one of [:nextTo, :high, :low1] - def tick_lbl_pos=(v) RestrictionValidator.validate "#{self.class}.tick_lbl_pos", [:nextTo, :high, :low], v; @tick_lbl_pos = v; end + def tick_lbl_pos=(v) RestrictionValidator.validate "#{self.class}.tick_lbl_pos", [:nextTo, :high, :low, :none], v; @tick_lbl_pos = v; end alias :tickLblPos= :tick_lbl_pos= # The number format format code for this axis |
