File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change 23
23
class Tick (Artist ):
24
24
"""
25
25
Abstract base class for the axis ticks, grid lines and labels
26
+
27
+ 1 refers to the bottom of the plot for xticks and the left for yticks
28
+ 2 refers to the top of the plot for xticks and the right for yticks
26
29
27
30
Publicly accessible attributes
28
-
31
+
29
32
tick1line : a Line2D instance
30
33
tick2line : a Line2D instance
31
34
gridline : a Line2D instance
32
- label1 : an Text instance
33
- label2 : an Text instance
35
+ label1 : a Text instance
36
+ label2 : a Text instance
34
37
gridOn : a boolean which determines whether to draw the tickline
35
38
tick1On : a boolean which determines whether to draw the 1st tickline
36
- (left for xtick and bottom for yticks)
37
39
tick2On : a boolean which determines whether to draw the 2nd tickline
38
- (left for xtick and bottom for yticks)
39
- label1On : a boolean which determines whether to draw tick label
40
- label2On : a boolean which determines whether to draw tick label
40
+ label1On : a boolean
4C2D
which determines whether to draw tick label
41
+ label2On : a boolean which determines whether to draw tick label
41
42
42
43
43
44
"""
You can’t perform that action at this time.
0 commit comments