From: Robert Rosenbaum on
It seems that the following code should be a standard use of "Full" for the Alignment field of GraphicsColumn:

f1 = Plot[x^2, {x, -1, 1}];
f2 = Show[{Plot[x^2, {x, -1, 1}], Graphics[Text["TEXT", {0, -3}]]},
ImagePadding -> {{All, All}, {75, All}},
PlotRangeClipping -> False];
GraphicsColumn[{f1, f2}, Full]

However, I get an error:
"Value of option Alignment -> Full in ... is not valid"

I'd like the two graphics to appear on the same scale: one will be taller than the other, but the scale of the axes will be the same.

I'm running 7.0.0 on x86 OS X 10.6.


Best,
Robert






From: Sjoerd C. de Vries on
Same here. The doc page lists Full as a usable option, but using it in
one of its own examples leads to the same error. Bug, I'd say.

Cheers -- Sjoerd

On Mar 19, 9:39 am, Robert Rosenbaum <robe...(a)math.uh.edu> wrote:
> It seems that the following code should be a standard use of "Full" for t=
he Alignment field of GraphicsColumn:
>
> f1 = Plot[x^2, {x, -1, 1}];
> f2 = Show[{Plot[x^2, {x, -1, 1}], Graphics[Text["TEXT", {0, -3}]]},
> ImagePadding -> {{All, All}, {75, All}},
> PlotRangeClipping -> False];
> GraphicsColumn[{f1, f2}, Full]
>
> However, I get an error:
> "Value of option Alignment -> Full in ... is not valid"
>
> I'd like the two graphics to appear on the same scale: one will be taller=
than the other, but the scale of the axes will be the same.
>
> I'm running 7.0.0 on x86 OS X 10.6.
>
> Best,
> Robert