diff options
| author | Randy Morgan <[email protected]> | 2012-07-18 08:50:43 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-07-18 08:50:43 +0900 |
| commit | 51ec0287e61e4c65e6312d041869ccd9a9538c84 (patch) | |
| tree | d6b78662995448a7f16c826432917c28fc45f0cb /lib/axlsx/drawing/chart.rb | |
| parent | f6cf8b9ffd4e1f8c25b3237cc529bc657c52e32f (diff) | |
| download | caxlsx-51ec0287e61e4c65e6312d041869ccd9a9538c84.tar.gz caxlsx-51ec0287e61e4c65e6312d041869ccd9a9538c84.zip | |
#113 implement data labels for pie charts
Diffstat (limited to 'lib/axlsx/drawing/chart.rb')
| -rw-r--r-- | lib/axlsx/drawing/chart.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/axlsx/drawing/chart.rb b/lib/axlsx/drawing/chart.rb index 3047fec2..c99d4878 100644 --- a/lib/axlsx/drawing/chart.rb +++ b/lib/axlsx/drawing/chart.rb @@ -46,7 +46,9 @@ module Axlsx attr_reader :series_type #TODO data labels! - #attr_reader :dLabls + def d_lbls + @d_lbls ||= DLbls.new + end # The title object for the chart. # @return [Title] |
