You can further customize the sequence of linetype properties interactively or in an initialization file. See set linetype (p. ). Several sample initialization files are provided in the distribution package.
The current linetype properties for a particular terminal can be previewed by issuing the test command after setting the terminal type.
Successive functions or datafiles plotted by a single command will be assigned successive linetypes in the current default sequence. You can override this for any individual function, datafile, or plot element by giving explicit line properties in the plot command.
Examples:
plot "foo", "bar" # plot two files using linetypes 1, 2 plot sin(x) linetype 4 # use linetype color 4
In general, colors can be specified using named colors, rgb (red, green, blue) components, hsv (hue, saturation, value) components, or a coordinate along the current pm3d palette.
Examples:
plot sin(x) lt rgb "violet" # one of gnuplot's named colors plot sin(x) lt rgb "#FF00FF" # explicit RGB triple in hexadecimal plot sin(x) lt palette cb -45 # whatever color corresponds to -45 # in the current cbrange of the palette plot sin(x) lt palette frac 0.3 # fractional value along the palette
See colorspec (p. ), show colornames (p. ), hsv (p. ), set palette (p. ), cbrange (p. ). See also set monochrome (p. ).
Linetypes also have an associated dot-dash pattern although not all terminal types are capable of using it. Gnuplot version 5 allows you to specify the dot-dash pattern independent of the line color. See dashtype (p. ).