File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed
Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -1457,7 +1457,22 @@ def get_minorticklocs(self):
14571457 return minor_locs
14581458
14591459 def get_ticklocs (self , * , minor = False ):
1460- """Return this Axis' tick locations in data coordinates."""
1460+ """
1461+ Return this Axis' tick locations in data coordinates.
1462+
1463+ The locations are not clipped to the current axis limits and hence
1464+ may contain locations that are not visible in the output.
1465+
1466+ Parameters
1467+ ----------
1468+ minor : bool, default: False
1469+ True to return the minor tick directions,
1470+ False to return the major tick directions.
1471+
1472+ Returns
1473+ -------
1474+ numpy array of tick locations
1475+ """
14611476 return self .get_minorticklocs () if minor else self .get_majorticklocs ()
14621477
14631478 def get_ticks_direction (self , minor = False ):
You can’t perform that action at this time.
0 commit comments