Re: Use of FrameLabel for GraphicsGrid
- To: mathgroup at smc.vnet.net
- Subject: [mg82733] Re: Use of FrameLabel for GraphicsGrid
- From: Jens-Peer Kuska <kuska at informatik.uni-leipzig.de>
- Date: Tue, 30 Oct 2007 03:25:04 -0500 (EST)
- Organization: Uni Leipzig
- References: <fg4d9t$69g$1@smc.vnet.net>
- Reply-to: kuska at informatik.uni-leipzig.de
Hi,
even when Options[GraphicsGrid] say that there is a FrameLabel option,
Mathematica ignore it and it is not lited in the documentation but
Show[GraphicsGrid[
Table[Plot[Sin[i x + theta], {x, -2 Pi, 2 Pi}], {theta, 0, Pi,
Pi/2}, {i, 1, 3}], Frame -> True] // FullGraphics, Frame -> True,
FrameLabel -> {{None, None}, {None, "Test"}}, FrameTicks -> None]
may help a bit.
Regards
Jens
Art wrote:
> I would like to have a frame label for a GraphicsGrid. There is a
> FrameLabel option but I'm not sure how it works. In the example below, I
> would like to have a title outside at top center of the frame box.
>
> GraphicsGrid[
> Table[
> Plot[Sin[i x + theta], {x, -2 Pi, 2 Pi}],
> {theta, 0, Pi, Pi/2},
> {i, 1, 3}],
> Frame -> True, FrameLabel -> {{None, None}, {None, "Test"}}
> ]
>
> The options for Frame are so flexible for GraphicsGrid that I must be
> using FrameLabel incorrectly.
>
> Thanks,
> Art.
>