Re: YTITLE behaviour in Mac IDL? [message #14037] |
Tue, 19 January 1999 00:00 |
davidf
Messages: 2866 Registered: September 1996
|
Senior Member |
|
|
Gregory G. Arkos (arkos@NOSPAMphys.ucalgary.ca) writes:
> I noticed something a bit strange today. The command
>
> PLOT, findgen(100), YTITLE='Test'
>
> on our workstations using 5.1 plots up fine, with the
> entire title "Test" parallel to the y axis (e.g. the characters
> are perpendicular to the Y axis, but the word runs parallel
> to the Y axis). The same thing with IDL 5.1 for PowerMac,
> yields the title "Test" running like a banner along the Y axis,
> so that both the characters AND the word are parallel to the
> Y axis:
>
> |
> T |
> e |
> s |
> t |
> |__________________
>
> Is there some way to adjust this? Is this a bug?
I'm guessing that the PowerMac has a startup file that
is turning hardware fonts on (i.e., !P.Font=0). Make sure
you are using software fonts (!P.Font=-1) or True-Type
fonts (!P.Font=1) if you want the text to rotate. You
can also set the font characteristic on the PLOT command
with the FONT keyword:
PLOT, findgen(100), YTITLE='Test', Font=-1
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting
Phone: 970-221-0438 E-Mail: davidf@dfanning.com
Coyote's Guide to IDL Progamming: http://www.dfanning.com/
Toll-Free IDL Book Orders: 1-888-461-0155
[Note: This follow-up was e-mailed to the cited author.]
|
|
|