Several color schemes are used in Plot.

Before any drawing is made, the backcolor is applied to the plot box. The axes, frame, ticmarks, labels and titles are then drawn in the forecolor.

Text specified with the text , textc and textr commands is drawn with the textcolor.

Data is colored in two ways, depending on plot type:

The edges of filled-in shapes are drawn with the edgecolor (usually black).

Backcolor, forecolor, textcolor and edgecolor are single colors.

Itemcolor and bandcolor are lists of colors. Itemcolor typically contains quite distinctive colors to distinguish the different data items. Bandcolor is typically a graduated scale of colors, for example to indicate height. Typical lists of colors are defined in ~system\classes\plot\plotdefs.ijs.

The term color can also be used as an abbreviation to specify the itemcolor or the bandcolor depending on plot type. This is convenient for simple plots where only one plot type is being drawn.

The keycolor is used for keys. By default this is the colors used in the plot, however, in some cases you need to specify this separately.

For example:

pd 'itemcolor blue,red,green'     NB. list of colors for items
pd 'bandcolor bgclr'              NB. list of colors in color band
pd 'color blue,red'               NB. item or band colors (depends on plot type)

The plotdefs.ijs script defines several color schemes, for example:

Custom color schemes can be defined. The name of the noun containing the list of colors must be all uppercase and must be in the copath of the jzplot locale. So for example a color scheme of 3 colors (red, green and blue) could be defined as:

MYCLR_z_=: 255 0 0 , 0 255 0 ,: 0 0 255

And specified during plotting like this:

pd 'itemcolor myclr'
pd 'itemcolor MYCLR'

Plot/Colors (last edited 2012-04-20 16:26:21 by RicSherlock)