end Function (GPL)

Syntax

end()

Description

Specifies the end of the GPL block that defines a particular graph or page.

Examples

Figure 1. Example: Defining a particular graph
GRAPH: begin()
ELEMENT: line(position(x*y))
GRAPH: end()
Figure 2. Example: Defining a page
PAGE: begin(scale(400px,300px))
SOURCE: s=csvSource(file("mydata.csv"))
DATA: x=col(source(s), name("x"))
DATA: y=col(source(s), name("y"))
ELEMENT: line(position(x*y))
PAGE: end()