Set display options for a geomap object including legend and outline color.
Syntax
geomap_name.options options_list
Options
legend / -legend | Turn on and off legend. |
lineclr(color_arg) | Specifies the boundary line color of the areas using the color_arg color specification. |
color_arg specifies the color to be employed. The color may be specified using predefined color names, by specifying the individual red-green-blue (RGB) components using the special “@RGB” function, or by specifying the individual red-green-blue (RGB) components in hexadecimal using the special “@HEX” function.
The predefined colors are given by the keywords (with their RGB equivalents):
blue | @rgb(0, 0, 255) |
red | @rgb(255, 0, 0) |
ltred | @rgb(255, 168, 168) |
green | @rgb(0, 128, 0) |
black | @rgb(0, 0, 0) |
white | @rgb(255, 255, 255) |
purple | @rgb(128, 0, 128) |
orange | @rgb(255, 128, 0) |
yellow | @rgb(255, 255, 0) |
gray | @rgb(128, 128, 128) |
ltgray | @rgb(192, 192, 192) |
Examples
gmap1.options -legend
hides the legend in the GEOMAP1 object.
gmap1.options legend lineclr(black)
displays the legend and sets the area boundary line color to black.
Cross-references
See
“Geomaps” for a discussion of geomaps.
See
Geomap::setfillcolor for setting the shape fill color.