diff options
| author | Randy Morgan <[email protected]> | 2012-05-03 18:40:00 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-05-03 18:40:00 +0900 |
| commit | 2470d612d94887d042b0b970936d59258dcf5c01 (patch) | |
| tree | c2007a8cca225658217f640b9db24ac4fe09d3f3 /lib/axlsx/drawing/chart.rb | |
| parent | e622dc54069074198990beb0462da630bad38dd0 (diff) | |
| download | caxlsx-2470d612d94887d042b0b970936d59258dcf5c01.tar.gz caxlsx-2470d612d94887d042b0b970936d59258dcf5c01.zip | |
bug fix - end_at should not be dependent on :start_at option
Diffstat (limited to 'lib/axlsx/drawing/chart.rb')
| -rw-r--r-- | lib/axlsx/drawing/chart.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/drawing/chart.rb b/lib/axlsx/drawing/chart.rb index 62bff861..5f14dde8 100644 --- a/lib/axlsx/drawing/chart.rb +++ b/lib/axlsx/drawing/chart.rb @@ -54,7 +54,7 @@ module Axlsx self.send("#{o[0]}=", o[1]) if self.respond_to? "#{o[0]}=" end start_at(*options[:start_at]) if options[:start_at] - end_at(*options[:end_at]) if options[:start_at] + end_at(*options[:end_at]) if options[:end_at] yield self if block_given? end |
