MathGroup Archive 2013

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Plot3D Axes Labels overlap plot axes and ticks?

  • To: mathgroup at smc.vnet.net
  • Subject: [mg130072] Re: Plot3D Axes Labels overlap plot axes and ticks?
  • From: Bob Hanlon <hanlonr357 at gmail.com>
  • Date: Thu, 7 Mar 2013 22:50:42 -0500 (EST)
  • Delivered-to: l-mathgroup@mail-archive0.wolfram.com
  • Delivered-to: l-mathgroup@wolfram.com
  • Delivered-to: mathgroup-newout@smc.vnet.net
  • Delivered-to: mathgroup-newsend@smc.vnet.net
  • References: <20130307085756.D869763A4@smc.vnet.net>

Plot3D[Sin[u v], {u, 0, 3}, {v, 0, 3},
 AxesLabel ->
  (Style[#, Bold, 16] & /@
    {"x", "y", "z"})]

You can use spaces or line feeds

Plot3D[Sin[u v], {u, 0, 3}, {v, 0, 3},
 AxesLabel ->
  (Style[#, Bold, 16] & /@
    {"\nx", "   y", "z    "})]


Bob Hanlon


On Thu, Mar 7, 2013 at 3:57 AM, Michael B. Heaney <mheaney at alum.mit.edu> wrote:
>
> Hi,
>
> In Plot3D, my axes labels overlap my axes and ticks. Is there any way to
> fix this? Perhaps specify how far from the axes the labels should be?
>
> Thanks,
>
> Michael



  • Prev by Date: Re: Using NIntegrate in a function
  • Next by Date: unexpected output order in notebook (Mathematica 9; bug?)
  • Previous by thread: Plot3D Axes Labels overlap plot axes and ticks?
  • Next by thread: Re: Plot3D Axes Labels overlap plot axes and ticks?