Window dimensions of the wxt terminal in gnuplot [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this questionI'm trying to set the size of a wxt terminal window using gnuplot v4.2
gnuplot&g开发者_运维技巧t; set terminal wxt size 600,600
Terminal type set to 'wxt'
undefined variable: size
Even more frustrating is that wxt does not respect the -geometry
flag like the x11 terminal. Note: I've tried 600,800
and 600x800
both don't work.
% gnuplot --version
gnuplot 4.2 patchlevel 4
I think there is a small mistake in your command, you should use , not x, so:
set terminal wxt size 600,600
Just to close this out, I've come to the sad conclusion that gnuplot 4.2 has no size options for the wxt terminal. It will work just as Martin shows for newer versions.
精彩评论