File tree 1 file changed +16
-1
lines changed
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):
1457
1457
return minor_locs
1458
1458
1459
1459
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
+ """
1461
1476
return self .get_minorticklocs () if minor else self .get_majorticklocs ()
1462
1477
1463
1478
def get_ticks_direction (self , minor = False ):
You can’t perform that action at this time.
0 commit comments