| LAYOUT LATTICE Statement |
The content of each cell in a LAYOUT LATTICE is specified by statgraph-statement(s) that can be specified independently or enclosed in a CELL block. When you enclose the statements in a CELL block, you can specify one or more header lines at the top of the cell. If you do not need a cell header in a cell, there is no need to use the CELL block.
The following general syntax is used for the contents of each cell in a LAYOUT LATTICE:
statgraph-statement(s) | cell-statement-block(s)
A cell-statement-block , when used, has the following syntax:
The following example shows a LAYOUT LATTICE block that uses one statgraph-statement and one cell-statement-block to generate the two-column layout shown in the following figure:

begingraph;
layout lattice /
columngutter=5 columns=2;
/* independent plot statement - defines first cell */
scatterplot x=age y=height;
/* cell block - defines second cell */
cell;
cellheader;
entry "Cell Header" / border =true;
endcellheader;
scatterplot x=weight y=height;
endcell;
endlayout;
endgraph;
Copyright © 2007 by SAS Institute Inc., Cary, NC, USA. All rights reserved.