From: Vince D. <vi...@sa...> - 2002-09-06 15:00:22
|
On Fri, 6 Sep 2002, A. van der Lee wrote: > How can the active surface size, i.e. the plotting area, on the screen be > enlarged? The default window that pops up, is very small. That is similar > to all the examples. I tried to change it with plspage, but that has to be > used before the initialisation. I do not even initialise; I cannot even see > that it happens in the exmaples. So why is that? I believe this is controlled (if I understand your question) outside of plplot. Plplot only manages the contents of the frame. The size is determined (in your case) by Tcl/Tk. So, something like: plframe .p .p configure -width 500 -height 500 will probably do the trick (do '.p configure' to see all the options). However, I may have misunderstood your request. cheers, Vince. p.s. thanks for moving your questions to the mailing lists. |