cget(option)
click to toggle source
def cget(option)
@chart.postscript_cget(option)
end
cget_strict(option)
click to toggle source
def cget_strict(option)
@chart.postscript_cget_strict(option)
end
cget_tkstring(option)
click to toggle source
def cget_tkstring(option)
@chart.postscript_cget_tkstring(option)
end
configinfo(key=nil)
click to toggle source
def configinfo(key=nil)
@chart.postscript_configinfo(key)
end
current_configinfo(key=nil)
click to toggle source
def current_configinfo(key=nil)
@chart.current_postscript_configinfo(key)
end
id()
click to toggle source
output(file=nil, keys={})
click to toggle source
def output(file=nil, keys={})
if file.kind_of?(Hash)
keys = file
file = nil
end
ret = @chart.postscript_output(file, keys)
if file
self
else
ret
end
end
to_eval()
click to toggle source