Rev 42333 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/grid/man/grid.show.viewport.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{grid.show.viewport}\alias{grid.show.viewport}\title{Draw a Diagram of a Grid Viewport}\description{This function uses Grid graphics to draw a diagram ofa Grid viewport.}\usage{grid.show.viewport(v, parent.layout = NULL, newpage = TRUE,border.fill="light grey",vp.col="blue", vp.fill="light blue",scale.col="red",vp = NULL)}\arguments{\item{v}{A Grid viewport object.}\item{parent.layout}{A grid layout object. If this is not NULL andthe viewport given in \code{v} has its location specified relativeto the layout, then the diagram shows the layout and which cells\code{v} occupies within the layout.}\item{newpage}{A logical value to indicate whether to move toa new page before drawing the diagram.}\item{border.fill}{Colour to fill the border margin.}\item{vp.col}{Colour for the border of the viewport region.}\item{vp.fill}{Colour to fill the viewport region.}\item{scale.col}{Colour to draw the viewport axes.}\item{vp}{A Grid viewport object (or NULL).}}\details{A viewport is created within \code{vp} to provide a margin forannotation, and the diagram is drawn within that new viewport.By default, the margin is filled with light grey, the new viewport is filledwith white and framed with a black border, and the viewport regionis filled with light blue and framed with a blue border.The diagram is annotated with the width and height (including units)of the viewport, the (x, y) location of the viewport, andthe x- and y-scales of the viewport, using red lines and text.}\value{None.}\author{Paul Murrell}\seealso{\link{Grid},\code{\link{viewport}}}\examples{## Diagram of a sample viewportgrid.show.viewport(viewport(x=0.6, y=0.6,w=unit(1, "inches"), h=unit(1, "inches")))grid.show.viewport(viewport(layout.pos.row=2, layout.pos.col=2:3),grid.layout(3, 4))}\keyword{dplot}