diff options
| author | Randy Morgan <[email protected]> | 2011-12-08 22:33:36 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2011-12-08 22:33:36 +0900 |
| commit | 208e08f46ca4e69dd5ecf6316ec9b877c86a1b3e (patch) | |
| tree | fd4768bd3aaafab9fe44ee8621e7fa75b111f36f /lib/axlsx/drawing/bar_series.rb | |
| parent | 8511700b46f68e54284331cd0b635fb109596779 (diff) | |
| download | caxlsx-208e08f46ca4e69dd5ecf6316ec9b877c86a1b3e.tar.gz caxlsx-208e08f46ca4e69dd5ecf6316ec9b877c86a1b3e.zip | |
cleaning up xml namespace usage in drawings and improving looks for charts in excel 2011
Diffstat (limited to 'lib/axlsx/drawing/bar_series.rb')
| -rw-r--r-- | lib/axlsx/drawing/bar_series.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/axlsx/drawing/bar_series.rb b/lib/axlsx/drawing/bar_series.rb index 129a13e8..5acbe55f 100644 --- a/lib/axlsx/drawing/bar_series.rb +++ b/lib/axlsx/drawing/bar_series.rb @@ -46,7 +46,7 @@ module Axlsx super(xml) do |xml_inner| @labels.to_xml(xml_inner) unless @labels.nil? @data.to_xml(xml_inner) unless @data.nil? - xml_inner.send('c:shape', :val=>@shape) + xml_inner.shape :val=>@shape end end |
