|
8 | 8 | ============================== ===============================================
|
9 | 9 | marker description
|
10 | 10 | ============================== ===============================================
|
11 |
| -"." point |
12 |
| -"," pixel |
13 |
| -"o" circle |
14 |
| -"v" triangle_down |
15 |
| -"^" triangle_up |
16 |
| -"<" triangle_left |
17 |
| -">" triangle_right |
18 |
| -"1" tri_down |
19 |
| -"2" tri_up |
20 |
| -"3" tri_left |
21 |
| -"4" tri_right |
22 |
| -"8" octagon |
23 |
| -"s" square |
24 |
| -"p" pentagon |
25 |
| -"*" star |
26 |
| -"h" hexagon1 |
27 |
| -"H" hexagon2 |
28 |
| -"+" plus |
29 |
| -"x" x |
30 |
| -"D" diamond |
31 |
| -"d" thin_diamond |
32 |
| -"|" vline |
33 |
| -"_" hline |
| 11 | +`"."` point |
| 12 | +`","` pixel |
| 13 | +`"o"` circle |
| 14 | +`"v"` triangle_down |
| 15 | +`"^"` triangle_up |
| 16 | +`"<"` triangle_left |
| 17 | +`">"` triangle_right |
| 18 | +`"1"` tri_down |
| 19 | +`"2"` tri_up |
| 20 | +`"3"` tri_left |
| 21 | +`"4"` tri_right |
| 22 | +`"8"` octagon |
| 23 | +`"s"` square |
| 24 | +`"p"` pentagon |
| 25 | +`"*"` star |
| 26 | +`"h"` hexagon1 |
| 27 | +`"H"` hexagon2 |
| 28 | +`"+"` plus |
| 29 | +`"x"` x |
| 30 | +`"D"` diamond |
| 31 | +`"d"` thin_diamond |
| 32 | +`"|"` vline |
| 33 | +`"_"` hline |
34 | 34 | TICKLEFT tickleft
|
35 | 35 | TICKRIGHT tickright
|
36 | 36 | TICKUP tickup
|
|
42 | 42 | CARETLEFTBASE caretleft (centered at base)
|
43 | 43 | CARETRIGHTBASE caretright (centered at base)
|
44 | 44 | CARETUPBASE caretup (centered at base)
|
45 |
| -"None" nothing |
46 |
| -None nothing |
47 |
| -" " nothing |
48 |
| -"" nothing |
| 45 | +`"None"`, None, `" "`, or `""` nothing |
49 | 46 | ``'$...$'`` render the string using mathtext.
|
50 | 47 | `verts` a list of (x, y) pairs used for Path vertices.
|
51 | 48 | The center of the marker is located at (0,0) and
|
52 | 49 | the size is normalized.
|
53 | 50 | path a `~matplotlib.path.Path` instance.
|
54 |
| -(`numsides`, `style`, `angle`) see below |
| 51 | +(`numsides`, `style`, `angle`) The marker can also be a tuple (`numsides`, |
| 52 | + `style`, `angle`), which will create a custom, |
| 53 | + regular symbol. |
| 54 | +
|
| 55 | + `numsides`: |
| 56 | + the number of sides |
| 57 | +
|
| 58 | + `style`: |
| 59 | + the style of the regular symbol: |
| 60 | + """""" |
| 61 | + ===== =================================== |
| 62 | + Value Description |
| 63 | + 0 a regular polygon |
| 64 | + 1 a star-like symbol |
| 65 | + 2 an asterisk |
| 66 | + 3 a circle (`numsides` and `angle` is |
| 67 | + ignored) |
| 68 | + ===== =================================== |
| 69 | + """""" |
| 70 | + `angle`: |
| 71 | + the angle of rotation of the symbol |
55 | 72 | ============================== ===============================================
|
56 | 73 |
|
57 |
| -The marker can also be a tuple (`numsides`, `style`, `angle`), which |
58 |
| -will create a custom, regular symbol. |
59 |
| -
|
60 |
| - `numsides`: |
61 |
| - the number of sides |
62 |
| -
|
63 |
| - `style`: |
64 |
| - the style of the regular symbol: |
65 |
| -
|
66 |
| - ===== ============================================= |
67 |
| - Value Description |
68 |
| - ===== ============================================= |
69 |
| - 0 a regular polygon |
70 |
| - 1 a star-like symbol |
71 |
| - 2 an asterisk |
72 |
| - 3 a circle (`numsides` and `angle` is ignored) |
73 |
| - ===== ============================================= |
74 |
| -
|
75 |
| - `angle`: |
76 |
| - the angle of rotation of the symbol, in degrees |
77 |
| -
|
78 | 74 | For backward compatibility, the form (`verts`, 0) is also accepted,
|
79 | 75 | but it is equivalent to just `verts` for giving a raw set of vertices
|
80 | 76 | that define the shape.
|
81 | 77 | """
|
| 78 | + |
82 | 79 | from __future__ import (absolute_import, division, print_function,
|
83 | 80 | unicode_literals)
|
84 | 81 |
|
|
0 commit comments