Class: Axlsx::Bar3DChart

Inherits:
Chart
  • Object
show all
Defined in:
lib/axlsx/drawing/bar_3D_chart.rb

Overview

The Bar3DChart is a three dimentional barchart (who would have guessed?) that you can add to your worksheet.

Constant Summary collapse

GAP_AMOUNT_PERCENT =

validation regex for gap amount percent

/0*(([0-9])|([1-9][0-9])|([1-4][0-9][0-9])|500)%/

Instance Attribute Summary collapse

Attributes inherited from Chart

#bg_color, #display_blanks_as, #graphic_frame, #legend_position, #series, #series_type, #show_legend, #style, #title, #vary_colors, #view_3D

Instance Method Summary collapse

Methods inherited from Chart

#add_series, #d_lbls, #end_at, #from, #index, #pn, #relationship, #start_at, #title_size=, #to

Methods included from OptionsParser

#parse_options

Constructor Details

#initialize(frame, options = {}) ⇒ Bar3DChart

Creates a new bar chart object

Parameters:

  • frame (GraphicFrame)

    The workbook that owns this chart.

  • options (Hash) (defaults to: {})

    a customizable set of options

Options Hash (options):

  • title (Cell, String)
  • show_legend (Boolean)
  • bar_dir (Symbol)
  • grouping (Symbol)
  • gap_width (String)
  • gap_depth (String)
  • shape (Symbol)
  • rot_x (Integer)
  • h_percent (String)
  • rot_y (Integer)
  • depth_percent (String)
  • r_ang_ax (Boolean)
  • perspective (Integer)

See Also:



79
80
81
82
83
84
85
86
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 79

def initialize(frame, options={})
  @vary_colors = true
  @gap_width, @gap_depth, @shape = nil, nil, nil
  super(frame, options)
  @series_type = BarSeries
  @view_3D = View3D.new({:r_ang_ax=>1}.merge(options))
  @d_lbls = nil
end

Instance Attribute Details

#gap_depthString Also known as: gapDepth

space between bar or column clusters, as a percentage of the bar or column width.

Returns:

  • (String)


35
36
37
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 35

def gap_depth
  @gap_depth
end

Instance Method Details

#axesAxes

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]

Returns:



147
148
149
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 147

def axes
 @axes ||= Axes.new(:cat_axis => CatAxis, :val_axis => ValAxis)
end

#bar_dirSymbol Also known as: barDir

The direction of the bars in the chart must be one of [:bar, :col]

Returns:

  • (Symbol)


28
29
30
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 28

def bar_dir
  @bar_dir ||= :bar
end

#bar_dir=(v) ⇒ Object Also known as: barDir=

The direction of the bars in the chart must be one of [:bar, :col]



90
91
92
93
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 90

def bar_dir=(v)
  RestrictionValidator.validate "Bar3DChart.bar_dir", [:bar, :col], v
  @bar_dir = v
end

#cat_axisCatAxis Also known as: catAxis

the category axis

Returns:



13
14
15
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 13

def cat_axis
  axes[:cat_axis]
end

#gap_widthString Also known as: gapWidth

space between bar or column clusters, as a percentage of the bar or column width.

Returns:

  • (String)


40
41
42
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 40

def gap_width
  @gap_width ||= 150
end

#gap_width=(v) ⇒ Object Also known as: gapWidth=

space between bar or column clusters, as a percentage of the bar or column width.



104
105
106
107
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 104

def gap_width=(v)
  RegexValidator.validate "Bar3DChart.gap_width", GAP_AMOUNT_PERCENT, v
  @gap_width=(v)
end

#groupingSymbol

grouping for a column, line, or area chart. must be one of [:percentStacked, :clustered, :standard, :stacked]

Returns:

  • (Symbol)


48
49
50
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 48

def grouping
  @grouping ||= :clustered
end

#grouping=(v) ⇒ Object

grouping for a column, line, or area chart. must be one of [:percentStacked, :clustered, :standard, :stacked]



98
99
100
101
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 98

def grouping=(v)
  RestrictionValidator.validate "Bar3DChart.grouping", [:percentStacked, :clustered, :standard, :stacked], v
  @grouping = v
end

#shapeSymbol

The shabe of the bars or columns must be one of [:cone, :coneToMax, :box, :cylinder, :pyramid, :pyramidToMax]

Returns:

  • (Symbol)


55
56
57
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 55

def shape
  @shape ||= :box
end

#shape=(v) ⇒ Object

The shabe of the bars or columns must be one of [:cone, :coneToMax, :box, :cylinder, :pyramid, :pyramidToMax]



119
120
121
122
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 119

def shape=(v)
  RestrictionValidator.validate "Bar3DChart.shape", [:cone, :coneToMax, :box, :cylinder, :pyramid, :pyramidToMax], v
  @shape = v
end

#to_xml_string(str = '') ⇒ String

Serializes the object

Parameters:

  • str (String) (defaults to: '')

Returns:

  • (String)


127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 127

def to_xml_string(str = '')
  super(str) do
    str << '<c:bar3DChart>'
    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:bar3DChart>'
    axes.to_xml_string(str)
  end
end

#val_axisValAxis Also known as: valAxis

the value axis

Returns:



20
21
22
# File 'lib/axlsx/drawing/bar_3D_chart.rb', line 20

def val_axis
  axes[:val_axis]
end