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?