|
From: Hans-Bernhard B. <br...@ph...> - 2006-01-18 15:52:39
|
Eric Schoeller wrote: > The data I'm plotting can range from y=3 to as great as y=2000 so this > is causing a lot of problems with the labels along the x axis That's because your way of generating those labels is rather sub-optimal. First of all, placing them via 'set xtics' would almost certainly be a better idea than doing that via 'set label'. Second, if you must use 'set label', you should use graph or screen coordinates, not data coordinates, in cases where you don't know the data scale. See 'help label' and 'help coordinate' for more details. |