Module: HowAreWeDoing::ActsAsPrintable::InstanceMethods
- Defined in:
- lib/how_are_we_doing/acts_as_printable.rb
Instance Method Summary collapse
Instance Method Details
#to_print_chart_label(graph_type = nil) ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/how_are_we_doing/acts_as_printable.rb', line 21 def to_print_chart_label(graph_type=nil) if respond_to?(:print_chart_label) print_chart_label(graph_type) else to_s end end |