File: aliases.rb

package info (click to toggle)
ruby-googlecharts 1.6.12-2
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 244 kB
  • sloc: ruby: 1,188; makefile: 3
file content (14 lines) | stat: -rw-r--r-- 424 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Gchart
  
  alias_method :background=, :bg=
  alias_method :chart_bg=, :graph_bg=
  alias_method :chart_color=, :graph_bg=
  alias_method :chart_background=, :graph_bg=
  alias_method :bar_color=, :bar_colors=
  alias_method :line_colors=, :bar_colors=
  alias_method :line_color=, :bar_colors=
  alias_method :slice_colors=, :bar_colors=
  alias_method :horizontal?, :horizontal
  alias_method :curved?, :curved

end