Creates a new bar chart object
Parameters:
The workbook that owns this chart.
a customizable set of options
Options Hash (options):
See Also:
72 73 74 75 76 77 78
# File 'lib/axlsx/drawing/bar_chart.rb', line 72 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