Previous Page | Next Page

The GBARLINE Procedure

PROC GBARLINE Statement


Identifies the data set containing the chart and response variables. Can specify an annotate data set.
Requirements: An input data set is required.
Restriction: Not supported by Java and Javaimg


Syntax

PROC GBARLINE <DATA=input-data-set>
<ANNOTATE=Annotate-data-set>
<IMAGEMAP=output-data-set>;

Options

PROC GBARLINE statement options affect all graphs produced by the procedure.

ANNOTATE=Annotate-data-set

specifies a data set to annotate all graphs that are produced by the GBARLINE procedure. To annotate individual graphs, use the ANNOTATE= option in the BAR statement.

Alias: ANNO=
See also: Using Annotate Data Sets
DATA=input-data-set

specifies the SAS data set that contains the variable or variables to chart. By default, the procedure uses the most recently created SAS data set.

See also: SAS Data Sets and About the Chart Variable
IMAGEMAP=output-data-set

creates a temporary SAS data set that is used to generate an image map in an HTML output file. The information in the image map data set includes the shape and coordinates of the elements in the graph and drill-down URLs that have been associated with those elements. The drill-down URLs are provided by one or two variables in the input data set. These variables are identified to the GBARLINE procedure with the HTML= option.

The %IMAGEMAP macro generates the image map in the HTML output file. The macro takes two arguments, the name of the image map data set and the name or fileref of the HTML output file, as shown in the following example:

%imagemap(imgmapds, myimgmap.html);

Previous Page | Next Page | Top of Page