hello,
i am wondering if there is any way to store or set Y axis table size in PD? using the resize message i can set the X axis easily, but there seems to be no way to set or save the Y axis. is there any work around?
thanks,
-jonathan
now do you mean the maximum data size? that is the max size of a float, which is huge... but you probably mean visual size of the graph, in that case just edit its height in the properties dialog of the graph (right click).
-josh
Jonathan Gage wrote:
hello,
i am wondering if there is any way to store or set Y axis table size in PD? using the resize message i can set the X axis easily, but there seems to be no way to set or save the Y axis. is there any work around?
thanks,
-jonathan
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
hi,
if the name of the graph which holds an array is unique, then use
; pd-<graphname> bounds 0 <top-yvalue> <nelements-1> <bottom-yvalue>
Usually, if created from the menu, a graph gets an automatic name of the "pd-graph..." sort, which is not necessarily unique.
So you may either edit a .pd file, or simply create the array with something like
; pd-<canvasname> graph <graphname> <bounds> <coords>; pd-<graphname> pop; pd-<graphname> array <arrayname> <nelements> float 1
instead of using the menu command.
(the <bounds> are as in the 'bounds' message, the <coords> are x y x+width y+height, where x/y are top-left coords)
K
Jonathan Gage wrote: ...
i am wondering if there is any way to store or set Y axis table size in PD?