Hi S_C,
Thanks for the reply. I'm not having any trouble with labeling the x,y axes - it's the main plot title that appears wrong. The issue seems to be related to the use of /ylog. For example:
IDL> x = findgen(100)+1
IDL> y = findgen(100)+1
IDL> p = plot(x,y,title='Test')
...sems to work just fine, in that "Test" is at the top of the plot just like it would be in the old plot routine. Now if I make the y-axis logged:
IDL> p = plot(x,y,title='Test',/ylog)
...now test appears in an odd place (within the plot window). Not sure if this is an obvious bug or just something unique to my setup!
|