Use of FrameLabel for GraphicsGrid
- To: mathgroup at smc.vnet.net
- Subject: [mg82705] Use of FrameLabel for GraphicsGrid
- From: Art <grenander at gmail.com>
- Date: Mon, 29 Oct 2007 05:34:24 -0500 (EST)
- Organization: University of California, Berkeley
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.