|
From: Don T. <dt...@to...> - 2005-10-04 16:20:09
|
Various terminals the size of whose output can be changed with 'set size' have a bug in current cvs. When the size is increased by setting the size with factors greater than one, any labels outside the original size (from 'set terminal xxx size n,m') do not appear. The happens in png, jpeg, gif and pbm (and perhaps others I don't know about.) A demo script follows. In the 'bad' output the title, key labels, and half the [xy]tic labels are missing. set term png set output 'good.png' plot sin(x), cos(x) set size 1.5, 1.5 set output 'bad.png' replot Don Taber |