Class: Gruff::Bar
Overview
Gruff::Bar provide a bar graph that presents categorical data with rectangular bars.
Here’s how to set up a Gruff::Bar.
g = Gruff::Bar.new
g.title = 'Bar Graph With Manual Colors'
g.spacing_factor = 0.1
g.group_spacing = 20
g.data :Art, [0, 5, 8, 15], '#990000'
g.data :Philosophy, [10, 3, 2, 8], '#009900'
g.data :Science, [2, 15, 8, 11], '#990099'
g.write('bar.png')
Constant Summary
Constants inherited from Base
Gruff::Base::DEFAULT_MARGIN, Gruff::Base::DEFAULT_TARGET_WIDTH, Gruff::Base::LABEL_MARGIN, Gruff::Base::LEGEND_MARGIN
Instance Attribute Summary collapse
-
#bar_spacing ⇒ Object
writeonly
Spacing factor applied between bars.
-
#group_spacing ⇒ Object
writeonly
Spacing factor applied between a group of bars belonging to the same label.
-
#hide_labels ⇒ Object
writeonly
Prevent drawing of column labels below a bar graph.
-
#label_formatting ⇒ Object
writeonly
Set the number output format string or lambda.
-
#show_labels_for_bar_values ⇒ Object
writeonly
Output the values for the bars on a bar graph.
Attributes inherited from Base
#bottom_margin, #colors, #hide_legend, #hide_line_markers, #hide_line_numbers, #hide_title, #label_margin, #label_max_size, #label_truncation_style, #left_margin, #legend_at_bottom, #legend_box_size, #legend_margin, #marker_color, #marker_shadow_color, #maximum_value, #minimum_value, #no_data_message, #right_margin, #sort, #sorted_drawing, #title_margin, #top_margin, #x_axis_increment, #x_axis_label_format, #y_axis_increment, #y_axis_label_format
Instance Method Summary collapse
-
#spacing_factor=(space_percent) ⇒ Object
Can be used to adjust the spaces between the bars.
Methods inherited from Base
#add_color, #bold_title=, #data, #draw, #font=, #font_color=, #initialize, #label_rotation=, #label_stagger_height=, #labels=, #legend_font_size=, #margins=, #marker_font_size=, #replace_colors, #theme=, #theme_37signals, #theme_greyscale, #theme_keynote, #theme_odeo, #theme_pastel, #theme_rails_keynote, #title=, #title_font=, #title_font_size=, #to_blob, #to_image, #transparent_background=, #write
Constructor Details
This class inherits a constructor from Gruff::Base
Instance Attribute Details
#bar_spacing=(value) ⇒ Object (writeonly)
Spacing factor applied between bars.
24 25 26 |
# File 'lib/gruff/bar.rb', line 24 def (value) @bar_spacing = value end |
#group_spacing=(value) ⇒ Object (writeonly)
Spacing factor applied between a group of bars belonging to the same label.
27 28 29 |
# File 'lib/gruff/bar.rb', line 27 def group_spacing=(value) @group_spacing = value end |
#hide_labels=(value) ⇒ Object (writeonly)
Prevent drawing of column labels below a bar graph. Default is false
.
38 39 40 |
# File 'lib/gruff/bar.rb', line 38 def hide_labels=(value) @hide_labels = value end |
#label_formatting=(value) ⇒ Object (writeonly)
Set the number output format string or lambda. Default is “%.2f”.
31 32 33 |
# File 'lib/gruff/bar.rb', line 31 def label_formatting=(value) @label_formatting = value end |
#show_labels_for_bar_values=(value) ⇒ Object (writeonly)
Output the values for the bars on a bar graph. Default is false
.
35 36 37 |
# File 'lib/gruff/bar.rb', line 35 def (value) @show_labels_for_bar_values = value end |
Instance Method Details
#spacing_factor=(space_percent) ⇒ Object
Can be used to adjust the spaces between the bars. Accepts values between 0.00 and 1.00 where 0.00 means no spacing at all and 1 means that each bars’ width is nearly 0 (so each bar is a simple line with no x dimension).
Default value is 0.9
.
50 51 52 53 54 |
# File 'lib/gruff/bar.rb', line 50 def spacing_factor=(space_percent) raise ArgumentError, 'spacing_factor must be between 0.00 and 1.00' if (space_percent < 0) || (space_percent > 1) @spacing_factor = (1 - space_percent) end |