end Function (GPL)
Syntax
end()
Description
Specifies the end of the GPL block that defines a particular graph or page.
Examples
GRAPH: begin()
ELEMENT: line(position(x*y))
GRAPH: end()
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()