grid.show.viewport           package:grid           R Documentation

_D_r_a_w _a _D_i_a_g_r_a_m _o_f _a _G_r_i_d _V_i_e_w_p_o_r_t

_D_e_s_c_r_i_p_t_i_o_n:

     This function uses Grid graphics to draw a diagram of a Grid
     viewport.

_U_s_a_g_e:

     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)

_A_r_g_u_m_e_n_t_s:

       v: A Grid viewport object.

parent.layout: A grid layout object.  If this is not NULL and the
          viewport given in 'v' has its location specified relative to
          the layout, then the diagram shows the layout and which cells
          'v' occupies within the layout.

 newpage: A logical value to indicate whether to move to a new page
          before drawing the diagram.

border.fill: Colour to fill the border margin.

  vp.col: Colour for the border of the viewport region.

 vp.fill: Colour to fill the viewport region.

scale.col: Colour to draw the viewport axes.

      vp: A Grid viewport object (or NULL).

_D_e_t_a_i_l_s:

     A viewport is created within 'vp' to provide a margin for
     annotation, and the diagram is drawn within that new viewport. By
     default, the margin is filled with light grey, the new viewport is
     filled with white and framed with a black border, and the viewport
     region is 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, and
     the x- and y-scales of the viewport, using red lines and text.

_V_a_l_u_e:

     None.

_A_u_t_h_o_r(_s):

     Paul Murrell

_S_e_e _A_l_s_o:

     Grid, 'viewport'

_E_x_a_m_p_l_e_s:

     ## Diagram of a sample viewport
     grid.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))

