File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323class Tick (Artist ):
2424 """
2525 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
2629
2730 Publicly accessible attributes
28-
31+
2932 tick1line : a Line2D instance
3033 tick2line : a Line2D instance
3134 gridline : a Line2D instance
32- label1 : an Text instance
33- label2 : an Text instance
35+ label1 : a Text instance
36+ label2 : a Text instance
3437 gridOn : a boolean which determines whether to draw the tickline
3538 tick1On : a boolean which determines whether to draw the 1st tickline
36- (left for xtick and bottom for yticks)
3739 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 which determines whether to draw tick label
41+ label2On : a boolean which determines whether to draw tick label
4142
4243
4344 """
You can’t perform that action at this time.
0 commit comments