|
From: Ethan M. <merritt@u.washington.edu> - 2005-08-03 16:35:44
|
On Wednesday 03 August 2005 08:57 am, Petr Mikulik wrote: > Please try this: > > set label 1 "hello" at 0,2 rotate by 90 > plot x > pause -1 > > set label 1 textcolor rgb "red" > plot x > > => the the bounding box of the string gets black background on x11. Is it > possible to fix it? Yes. Turn off the x11 resource "fastrotate". echo "gnuplot*fastrotate: off" | xrdb -merge This is a known, and long-since discussed, problem. To rotate text correctly in the presence of extra colors is *very* slow, to the point that x performance is seriously degraded. Since most plots do not need this feature, the default is to use the older, faster, rendering algorithm. -- Ethan A Merritt merritt@u.washington.edu Biomolecular Structure Center Mailstop 357742 University of Washington, Seattle, WA 98195 |