File tree Expand file tree Collapse file tree 1 file changed +17
-23
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +17
-23
lines changed
Original file line number Diff line number Diff line change @@ -44,38 +44,32 @@ class Tick(artist.Artist):
44
44
1 refers to the bottom of the plot for xticks and the left for yticks
45
45
2 refers to the top of the plot for xticks and the right for yticks
46
46
47
- Publicly accessible attributes:
47
+ Attributes
48
+ ----------
49
+ tick1line : Line2D
48
50
49
- :attr:`tick1line`
50
- a Line2D instance
51
+ tick2line : Line2D
51
52
52
- :attr:`tick2line`
53
- a Line2D instance
53
+ gridline : Line2D
54
54
55
- :attr:`gridline`
56
- a Line2D instance
55
+ label1 : Text
57
56
58
- :attr:`label1`
59
- a Text instance
57
+ label2 : Text
60
58
61
- :attr:`label2`
62
- a Text instance
59
+ gridOn : bool
60
+ Determines whether to draw the tickline.
63
61
64
- :attr:`gridOn`
65
- a boolean which determines whether to draw the tickline
62
+ tick1On : bool
63
+ Determines whether to draw the 1st tickline.
66
64
67
- :attr:`tick1On`
68
- a boolean which determines whether to draw the 1st tickline
65
+ tick2On : bool
66
+ Determines whether to draw the 2nd tickline.
69
67
70
- :attr:`tick2On`
71
- a boolean which determines whether to draw the 2nd tickline
72
-
73
- :attr:`label1On`
74
- a boolean which determines whether to draw tick label
75
-
76
- :attr:`label2On`
77
- a boolean which determines whether to draw tick label
68
+ label1On : bool
69
+ Determines whether to draw tick label.
78
70
71
+ label2On : bool
72
+ Determines whether to draw tick label.
79
73
"""
80
74
def __init__ (self , axes , loc , label ,
81
75
size = None , # points
You can’t perform that action at this time.
0 commit comments