class AmCharts::Legend

Attributes

listeners[R]
settings[R]

Public Class Methods

new(&block) click to toggle source
# File lib/amcharts/legend.rb, line 5
def initialize(&block)
  @settings = Settings.new
  @listeners = Collection[Listener]
  instance_exec(self, &block) if block_given?
end

Private Instance Methods

method_missing(name, *args, &block) click to toggle source
# File lib/amcharts/legend.rb, line 13
def method_missing(name, *args, &block)
  @settings.send(name, *args, &block)
end