1 |
# RCSid $Id$ |
2 |
# |
3 |
# This file defines a standard scatter plot, |
4 |
# where a curve is represented by special |
5 |
# symbols at each point. |
6 |
# |
7 |
|
8 |
include = standard.plt # standard definitions |
9 |
|
10 |
symfile = symbols.mta # our symbol file |
11 |
symsize = 100 # global symbol radius |
12 |
|
13 |
# |
14 |
# Curve defaults: |
15 |
# |
16 |
|
17 |
Asymtype = "triangle" # symbol for A |
18 |
Asymsize = symsize # symbol radius for A |
19 |
Athick = 0 # line thickness for A |
20 |
Acolor = 4 # color for A |
21 |
|
22 |
Bsymtype = "square" |
23 |
Bsymsize = symsize |
24 |
Bthick = 0 |
25 |
Bcolor = 2 |
26 |
|
27 |
Csymtype = "triangle2" |
28 |
Csymsize = symsize |
29 |
Cthick = 0 |
30 |
Ccolor = 1 |
31 |
|
32 |
Dsymtype = "diamond" |
33 |
Dsymsize = symsize |
34 |
Dthick = 0 |
35 |
Dcolor = 3 |
36 |
|
37 |
Esymtype = "octagon" |
38 |
Esymsize = symsize |
39 |
Ethick = 0 |
40 |
Ecolor = 4 |
41 |
|
42 |
Fsymtype = "crosssquare" |
43 |
Fsymsize = symsize |
44 |
Fthick = 0 |
45 |
Fcolor = 2 |
46 |
|
47 |
Gsymtype = "exsquare" |
48 |
Gsymsize = symsize |
49 |
Gthick = 0 |
50 |
Gcolor = 1 |
51 |
|
52 |
Hsymtype = "crossdiamond" |
53 |
Hsymsize = symsize |
54 |
Hthick = 0 |
55 |
Hcolor = 3 |