summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/drawing/bar_chart.rb
diff options
context:
space:
mode:
authorDavid N. Robinson <[email protected]>2017-11-07 16:51:30 +0200
committerDavid N. Robinson <[email protected]>2017-11-17 06:14:33 +0200
commitef396a558b35644c79b74e009acb44b52db36ed1 (patch)
treeebbaa0f951b9d99fae372bc319fbacdfc5b7cbe2 /lib/axlsx/drawing/bar_chart.rb
parente855b75cd13e5a7e16c755ab648594c5a85e6653 (diff)
downloadcaxlsx-ef396a558b35644c79b74e009acb44b52db36ed1.tar.gz
caxlsx-ef396a558b35644c79b74e009acb44b52db36ed1.zip
Add support for non-3D bar charts
Diffstat (limited to 'lib/axlsx/drawing/bar_chart.rb')
-rw-r--r--lib/axlsx/drawing/bar_chart.rb143
1 files changed, 143 insertions, 0 deletions
diff --git a/lib/axlsx/drawing/bar_chart.rb b/lib/axlsx/drawing/bar_chart.rb
new file mode 100644
index 00000000..7efd0ec5
--- /dev/null
+++ b/lib/axlsx/drawing/bar_chart.rb
@@ -0,0 +1,143 @@
+# encoding: UTF-8
+module Axlsx
+
+ # The BarChart is a three dimentional barchart (who would have guessed?) that you can add to your worksheet.
+ # @see Worksheet#add_chart
+ # @see Chart#add_series
+ # @see Package#serialize
+ # @see README for an example
+ class BarChart < Chart
+
+ # the category axis
+ # @return [CatAxis]
+ def cat_axis
+ axes[:cat_axis]
+ end
+ alias :catAxis :cat_axis
+
+ # the value axis
+ # @return [ValAxis]
+ def val_axis
+ axes[:val_axis]
+ end
+ alias :valAxis :val_axis
+
+ # The direction of the bars in the chart
+ # must be one of [:bar, :col]
+ # @return [Symbol]
+ def bar_dir
+ @bar_dir ||= :bar
+ end
+ alias :barDir :bar_dir
+
+ # space between bar or column clusters, as a percentage of the bar or column width.
+ # @return [String]
+ attr_reader :gap_depth
+ alias :gapDepth :gap_depth
+
+ # space between bar or column clusters, as a percentage of the bar or column width.
+ # @return [String]
+ def gap_width
+ @gap_width ||= 150
+ end
+ alias :gapWidth :gap_width
+
+ #grouping for a column, line, or area chart.
+ # must be one of [:percentStacked, :clustered, :standard, :stacked]
+ # @return [Symbol]
+ def grouping
+ @grouping ||= :clustered
+ end
+
+ # The shabe of the bars or columns
+ # must be one of [:cone, :coneToMax, :box, :cylinder, :pyramid, :pyramidToMax]
+ # @return [Symbol]
+ def shape
+ @shape ||= :box
+ end
+
+ # validation regex for gap amount percent
+ GAP_AMOUNT_PERCENT = /0*(([0-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%/
+
+ # Creates a new bar chart object
+ # @param [GraphicFrame] frame The workbook that owns this chart.
+ # @option options [Cell, String] title
+ # @option options [Boolean] show_legend
+ # @option options [Symbol] bar_dir
+ # @option options [Symbol] grouping
+ # @option options [String] gap_width
+ # @option options [String] gap_depth
+ # @option options [Symbol] shape
+ # @see Chart
+ def initialize(frame, options={})
+ @vary_colors = true
+ @gap_width, @gap_depth, @shape = nil, nil, nil
+ super(frame, options)
+ @series_type = BarSeries
+ @d_lbls = nil
+ end
+
+ # The direction of the bars in the chart
+ # must be one of [:bar, :col]
+ def bar_dir=(v)
+ RestrictionValidator.validate "BarChart.bar_dir", [:bar, :col], v
+ @bar_dir = v
+ end
+ alias :barDir= :bar_dir=
+
+ #grouping for a column, line, or area chart.
+ # must be one of [:percentStacked, :clustered, :standard, :stacked]
+ def grouping=(v)
+ RestrictionValidator.validate "BarChart.grouping", [:percentStacked, :clustered, :standard, :stacked], v
+ @grouping = v
+ end
+
+ # space between bar or column clusters, as a percentage of the bar or column width.
+ def gap_width=(v)
+ RegexValidator.validate "BarChart.gap_width", GAP_AMOUNT_PERCENT, v
+ @gap_width=(v)
+ end
+ alias :gapWidth= :gap_width=
+
+ # space between bar or column clusters, as a percentage of the bar or column width.
+ def gap_depth=(v)
+ RegexValidator.validate "BarChart.gap_didth", GAP_AMOUNT_PERCENT, v
+ @gap_depth=(v)
+ end
+ alias :gapDepth= :gap_depth=
+
+ # The shabe of the bars or columns
+ # must be one of [:cone, :coneToMax, :box, :cylinder, :pyramid, :pyramidToMax]
+ def shape=(v)
+ RestrictionValidator.validate "BarChart.shape", [:cone, :coneToMax, :box, :cylinder, :pyramid, :pyramidToMax], v
+ @shape = v
+ end
+
+ # Serializes the object
+ # @param [String] str
+ # @return [String]
+ def to_xml_string(str = '')
+ super(str) do
+ str << '<c:barChart>'
+ str << ('<c:barDir val="' << bar_dir.to_s << '"/>')
+ str << ('<c:grouping val="' << grouping.to_s << '"/>')
+ str << ('<c:varyColors val="' << vary_colors.to_s << '"/>')
+ @series.each { |ser| ser.to_xml_string(str) }
+ @d_lbls.to_xml_string(str) if @d_lbls
+ str << ('<c:gapWidth val="' << @gap_width.to_s << '"/>') unless @gap_width.nil?
+ str << ('<c:gapDepth val="' << @gap_depth.to_s << '"/>') unless @gap_depth.nil?
+ str << ('<c:shape val="' << @shape.to_s << '"/>') unless @shape.nil?
+ axes.to_xml_string(str, :ids => true)
+ str << '</c:barChart>'
+ axes.to_xml_string(str)
+ end
+ end
+
+ # A hash of axes used by this chart. Bar charts have a value and
+ # category axes specified via axes[:val_axes] and axes[:cat_axis]
+ # @return [Axes]
+ def axes
+ @axes ||= Axes.new(:cat_axis => CatAxis, :val_axis => ValAxis)
+ end
+ end
+end