WindowCommand
Jump to navigation
Jump to search
Window
window - create a plotting surface with an array of panes for individual plots
Synposis
window
[ rows=<n> ][ columns=<n> ] [ width=<n> ][ hieght=<n> ] [ xwin ] [ aqt ] [ xcairo ]
Description
The window statement allows the user to specify the type of window and the number of panes available for plot commands to use.
- rows, columns
- These parameters specify the number of rows and columns of panes available to plot on. Rows=2 and columns=3 would give 6 different plot panes.
- width, height
- These parameters specify the size of each pane in pixels. The default is 600x 600.
- xwin | agt | xcairo
Allow the user to override the default plot graphics interface. These are set usually to default to be compatible with the installation system.
Examples
window row=1 col=1 width=400 height=400
This will create a single-paned plot window of 400x400 pixels.
window row=2 col=2
This command creates a 2 by 2 array of plot panes to use with the plot commands.