diff options
| author | Moses Hohman <[email protected]> | 2013-06-27 15:36:34 -0500 |
|---|---|---|
| committer | Moses Hohman <[email protected]> | 2013-06-27 15:38:53 -0500 |
| commit | c254678321c3ae620aa8a50161331d3f3c218f78 (patch) | |
| tree | 8f6bbdff5b44918186afbeaf122bd560b60cf5a6 /lib/axlsx/drawing/bar_3D_chart.rb | |
| parent | 9e2b64a27b2f13694fb1f53d1e50cc5120714521 (diff) | |
| download | caxlsx-c254678321c3ae620aa8a50161331d3f3c218f78.tar.gz caxlsx-c254678321c3ae620aa8a50161331d3f3c218f78.zip | |
Fixes Issue #202 Axes are borked in Bar3DChart by requiring axis order in the constructor
Diffstat (limited to 'lib/axlsx/drawing/bar_3D_chart.rb')
| -rw-r--r-- | lib/axlsx/drawing/bar_3D_chart.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/axlsx/drawing/bar_3D_chart.rb b/lib/axlsx/drawing/bar_3D_chart.rb index 3315ad80..755f334c 100644 --- a/lib/axlsx/drawing/bar_3D_chart.rb +++ b/lib/axlsx/drawing/bar_3D_chart.rb @@ -142,10 +142,10 @@ module Axlsx end # A hash of axes used by this chart. Bar charts have a value and - # category axes specified via axex[:val_axes] and axes[:cat_axis] + # category axes specified via axes[:val_axes] and axes[:cat_axis] # @return [Axes] def axes - @axes ||= Axes.new(:val_axis => ValAxis, :cat_axis => CatAxis) + @axes ||= Axes.new(:cat_axis => CatAxis, :val_axis => ValAxis) end end end |
