MathGroup Archive 2006

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

Search the Archive

PlotRange and FullGraphics

  • To: mathgroup at smc.vnet.net
  • Subject: [mg69372] PlotRange and FullGraphics
  • From: Bruce Colletti <vze269bv at verizon.net>
  • Date: Sat, 9 Sep 2006 03:26:53 -0400 (EDT)

Re Mathematica 5.2.

The code below vertically displays the x-ticklabels.  However, despite the PlotRange->All option, each is slightly chopped off at its start.  

Why don't the full labels appear?

Thankx.

Bruce
 
g = Plot[x, {x, 0, 1}];
g = FullGraphics@g;
g = g /. Text[text_, {x_,
 y_ /; y < 0}, offset_] -> Text[text, {x, y}, offset, {0, 1}];

Show[g, PlotRange -> All];


  • Prev by Date: Re: solve the following problem
  • Next by Date: Re: Exporting text to (or in) vector graphics as "sentences"?
  • Previous by thread: Re: Re: Re: solve and Abs
  • Next by thread: Re: PlotRange and FullGraphics