File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -330,6 +330,9 @@ def apply_tickdir(self, tickdir):
330
330
if self ._tickdir == 'in' :
331
331
self ._tickmarkers = (mlines .TICKUP , mlines .TICKDOWN )
332
332
self ._pad = self ._base_pad
333
+ elif self ._tickdir == 'inout' :
334
+ self ._tickmarkers = ('|' , '|' )
335
+ self ._pad = self ._base_pad + self ._size / 2.
333
336
else :
334
337
self ._tickmarkers = (mlines .TICKDOWN , mlines .TICKUP )
335
338
self ._pad = self ._base_pad + self ._size
@@ -469,6 +472,9 @@ def apply_tickdir(self, tickdir):
469
472
if self ._tickdir == 'in' :
470
473
self ._tickmarkers = (mlines .TICKRIGHT , mlines .TICKLEFT )
471
474
self ._pad = self ._base_pad
475
+ elif self ._tickdir == 'inout' :
476
+ self ._tickmarkers = ('_' , '_' )
477
+ self ._pad = self ._base_pad + self ._size / 2.
472
478
else :
473
479
self ._tickmarkers = (mlines .TICKLEFT , mlines .TICKRIGHT )
474
480
self ._pad = self ._base_pad + self ._size
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ text.hinting_factor : 8 # Specifies the amount of softness for hinting in the
249
249
#xtick.minor.pad : 4 # distance to the minor tick label in points
250
250
#xtick.color : k # color of the tick labels
251
251
#xtick.labelsize : medium # fontsize of the tick labels
252
- #xtick.direction : in # direction: in or out
252
+ #xtick.direction : in # direction: in, out, or inout
253
253
254
254
#ytick.major.size : 4 # major tick size in points
255
255
#ytick.minor.size : 2 # minor tick size in points
@@ -259,7 +259,7 @@ text.hinting_factor : 8 # Specifies the amount of softness for hinting in the
259
259
#ytick.minor.pad : 4 # distance to the minor tick label in points
260
260
#ytick.color : k # color of the tick labels
261
261
#ytick.labelsize : medium # fontsize of the tick labels
262
- #ytick.direction : in # direction: in or out
262
+ #ytick.direction : in # direction: in, out, or inout
263
263
264
264
265
265
### GRIDS
You can’t perform that action at this time.
0 commit comments