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];