set cmark
set cmark marktype
Set the style of the marker for line plots, or for the gxout option 'stnmark'. marktype
may be one of the following:
0 - none1 - plus sign2 - open circle (default)3 - closed circle5 - closed square4 - open square7 - open diamond6 - multiplication sign10 - open circle with vertical bar8 - open triangle 9 - closed triangle11 - closed circle with vertical bar
Usage Notes
-
Reset by
clear
ordisplay
. -
The size of the marker may be set by using
set digsize
. - The mark types are also used in the 'draw mark' command, as shown in the example below.
Examples
Here is a short script sample that draws all the mark types, followed by the image output after running the script.
m=1while (m<=12)'draw mark 'm' 'm/2' 5.5 0.2''set string 1 c 'm=m+1'draw string 'm/2' 5 'mendwhile
