|
From: Thomas S. <t.s...@fz...> - 2009-09-29 12:57:58
|
if - like in your case - the tics label string and the tics
position are the same, don't specify the label string:
set y2tics add (-90, 90)
Dr. Ing. Dieter Jurzitza wrote:
>
> Dear listmembers,
> recently I detected an issue with gnuplot someone might be able to help me
> with:
>
> I am using the y2-axis for angle plotting. I say:
>
> y2range[-90:90]
> set y2tics
> set y2tics add ("-90" -90, "90" 90)
>
> now, the "-90" value looks ok, the "90" value sits too close to the axis
> (compared to the rest of the y2-axis labels). This is the case for both
> the
> postscript and the wxt - terminal. The solution is to modify the "set
> y2tics
> add" - command:
>
> set y2tics add ("-90" -90, " 90" 90)
> i. e. add a blank in front of "90".
>
> This behaviour shows in both gnuplot 4.2.5 and in 4.3.0 from March
> timeframe.
>
> ...
>
> Thank you very much for looking into this,
> take care
>
>
>
>
> Dieter Jurzitza
>
--
View this message in context: http://www.nabble.com/Questions-tp25651832p25662091.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|