Method: Tk::BLT::PlotComponent#xaxis_bind_append

Defined in:
ext/lib/tkextlib/blt/component.rb

#xaxis_bind_append(context, *args) ⇒ Object



1894
1895
1896
1897
1898
1899
1900
1901
1902
# File 'ext/lib/tkextlib/blt/component.rb', line 1894

def xaxis_bind_append(context, *args)
  if TkComm._callback_entry?(args[0]) || !block_given?
    cmd = args.shift
  else
    cmd = Proc.new
  end
  _bind_append([path, 'xaxis', 'bind'], context, cmd, *args)
  self
end