[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: axis and titles
- Subject: Re: axis and titles
- From: Todd Clements <mole6e23(at)hotmail.com>
- Date: Wed, 17 Jan 2001 12:48:34 -0800
- Newsgroups: comp.lang.idl-pvwave
- Organization: UCSD
- References: <3A65DE21.FC46F30E@fz-juelich.de>
- User-Agent: MT-NewsWatcher/3.0 (PPC)
- Xref: news.doit.wisc.edu comp.lang.idl-pvwave:23029
"R.Bauer" <r.bauer@fz-juelich.de> wrote:
> How did I define the X axis title a bit lower as default.
> The Y axis title has more space between the numbers as the X Title.
Like David said, it's one of those things that is difficult to do. I
actually ended up writing my own routine to put together plots so I
could have that spacing be correct, change font sizes of the axes and
titles separately with just keywords, etc. It's actually not all that
difficult to do. I'd post my code but it's really specialized for the
kind of plots we make in our lab (not to mention poorly documented! =),
and not likely to be of general use.
As with most things dealing with the difference between what you see on
screen and what you see on printed output, there is some futzing (how
does one spell that?) involved in getting the output to look correct.
Essentially what you want to do is write a routine that calls plot
without the axis titles, and then use xyouts to manually place the axis
title given the positioning of the plot on the page. My guess is there
is some code out there to do this sort of thing already in one of the
many IDL libraries.
Todd