Methods
- B
- C
- D
- L
- P
- S
- T
- V
- W
- X
- Y
Included Modules
Instance Public methods
background(part, color_or_image, dir)
Link
balloon(*args)
Link
# File ext/tk/lib/tkextlib/tcllib/plotchart.rb, line 229 def balloon(*args) # args => (x, y, text, dir) or ([x, y], text, dir) if args[0].kind_of?(Array) # args => ([x, y], text, dir) x, y = args.shift else # args => (x, y, text, dir) x = args.shift y = args.shift end text, dir = args tk_call_without_enc(@chart, 'balloon', x, y, _get_eval_enc_str(text), dir) self end
balloonconfig(key, value=None)
Link
coords_3D_to_pixel(x, y, z)
Link
coords_to_pixel(x, y)
Link
determine_scale(xmax, ymax)
Link
legend(series, text)
Link
legendconfig(key, value=None)
Link
pixel_to_coords(x, y)
Link
plaintext(*args)
Link
# File ext/tk/lib/tkextlib/tcllib/plotchart.rb, line 254 def plaintext(*args) # args => (x, y, text, dir) or ([x, y], text, dir) if args[0].kind_of?(Array) # args => ([x, y], text, dir) x, y = args.shift else # args => (x, y, text, dir) x = args.shift y = args.shift end text, dir = args tk_call_without_enc(@chart, 'plaintext', x, y, _get_eval_enc_str(text), dir) self end
plotpack(dir, *plots)
Link
polar_coordinates(radmax)
Link
polar_to_pixel(rad, phi)
Link
save_plot(filename)
Link
set_zoom_pan()
Link
title(str)
Link
view_port(*args)
Link
world_3D_coordinates(*args)
Link
world_coordinates(*args)
Link
xconfig(key, value=None)
Link
xtext(str)
Link
xticklines(color=None)
Link
yconfig(key, value=None)
Link
ytext(str)
Link