class Tk::BLT::Barchart

Constants

TkCommandNames
WidgetClassName

Public Instance Methods

extents(item) click to toggle source
# File lib/tkextlib/blt/barchart.rb, line 36
def extents(item)
  num_or_str(tk_send_without_enc('extents', item))
end
inside(x, y) click to toggle source
# File lib/tkextlib/blt/barchart.rb, line 44
def inside(x, y)
  bool(tk_send_without_enc('inside', x, y))
end
invtransform(x, y) click to toggle source
# File lib/tkextlib/blt/barchart.rb, line 40
def invtransform(x, y)
  list(tk_send_without_enc('invtransform', x, y))
end
metafile(file=None) click to toggle source
# File lib/tkextlib/blt/barchart.rb, line 48
def metafile(file=None)
  # Windows only
  tk_send('metafile', file)
  self
end
snap(output, keys={}) click to toggle source
# File lib/tkextlib/blt/barchart.rb, line 54
def snap(output, keys={})
  tk_send_without_enc('snap', *(hash_kv(keys, false) + output))
  self
end
transform(x, y) click to toggle source
# File lib/tkextlib/blt/barchart.rb, line 59
def transform(x, y)
  list(tk_send_without_enc('transform', x, y))
end

Private Instance Methods

__boolval_optkeys() click to toggle source
# File lib/tkextlib/blt/barchart.rb, line 20
def __boolval_optkeys
  ['bufferelements', 'buffergraph', 'invertxy']
end
__strval_optkeys() click to toggle source
# File lib/tkextlib/blt/barchart.rb, line 25
def __strval_optkeys
  ['text', 'label', 'title', 'file',
    'background', 'plotbackground']
end
__tkvariable_optkeys() click to toggle source
Calls superclass method TkConfigMethod#__tkvariable_optkeys
# File lib/tkextlib/blt/barchart.rb, line 31
def __tkvariable_optkeys
  super() << 'colormap' << 'fontmap'
end