| Re: plotting graphics for web pages [message #60332 is a reply to message #60248] |
Mon, 19 May 2008 19:31   |
David Fanning
Messages: 11724 Registered: August 2001
|
Senior Member |
|
|
Paul van Delst writes:
> All this would be much simpler if IDL didn't change the @%$^#% charsize when multiple
> plots are displayed. Whoever thought that little beauty up (or, at the very least, decided
> that the user didn't need control over it) should've been tossed out on his/her earhole
> during the pre-implementation code review.... :o)
Uh, well, did you ever try this little trick:
IDL> Window
IDL> !p.MULTI=[0,3,2]
IDL> plot, findgen(11), xtitle='Signal', Ytitle='Acquisition'
IDL> plot, findgen(11), xtitle='Signal', Ytitle='Acquisition'
IDL> plot, findgen(11), xtitle='Signal', Ytitle='Acquisition'
IDL> !p.charsize=1.5
IDL> plot, findgen(11), xtitle='Signal', Ytitle='Acquisition'
IDL> plot, findgen(11), xtitle='Signal', Ytitle='Acquisition'
IDL> plot, findgen(11), xtitle='Signal', Ytitle='Acquisition'
Seems like that's a fairly easy way to get control over
character size in multi-plots. ;-)
Cheers,
David
--
David Fanning, Ph.D.
Fanning Software Consulting, Inc.
Coyote's Guide to IDL Programming: http://www.dfanning.com/
Sepore ma de ni thui. ("Perhaps thou speakest truth.")
|
|
|
|