Re: How to rotate AxesLabel ?
- To: mathgroup at smc.vnet.net
- Subject: [mg74108] Re: How to rotate AxesLabel ?
- From: Jean-Marc Gulliet <jeanmarc.gulliet at gmail.com>
- Date: Sat, 10 Mar 2007 06:54:05 -0500 (EST)
- Organization: The Open University, Milton Keynes, UK
- References: <esr17d$6md$1@smc.vnet.net>
Alex wrote: > Hi everybody, > > this sounds simple, but I can't figure it out. > How can I rotate th y-axis label, so that it is drawn vertically and > not horizontally ?? > The horizontal orientation often interferes with my PlotLabel and > therefore I would like to rotate it. > > Any ideas ? > > Many thanks, > > Axel > > Hi Axel, The option *RotateLabel* should be what you are looking for. From the online help, "RotateLabel is an option for twoâ??dimensional graphics functions which specifies whether labels on vertical frame axes should be rotated to be vertical." For example, In[1]:= Plot[Sin[x], {x, -2*Pi, 2*Pi}, Frame -> True, FrameLabel -> {"x-axis", "This is the function sin x"}, RotateLabel -> True]; [...graphics deleted...] Regards, Jean-Marc