@@ -549,15 +549,31 @@ def __init__(self, fig, rect,
549
549
self .tick_params (
550
550
top = rcParams ['xtick.top' ] and rcParams ['xtick.minor.top' ],
551
551
bottom = rcParams ['xtick.bottom' ] and rcParams ['xtick.minor.bottom' ],
552
+ labeltop = (rcParams ['xtick.labeltop' ] and
553
+ rcParams ['xtick.minor.top' ]),
554
+ labelbottom = (rcParams ['xtick.labelbottom' ] and
555
+ rcParams ['xtick.minor.bottom' ]),
552
556
left = rcParams ['ytick.left' ] and rcParams ['ytick.minor.left' ],
553
557
right = rcParams ['ytick.right' ] and rcParams ['ytick.minor.right' ],
558
+ labelleft = (rcParams ['ytick.labelleft' ] and
559
+ rcParams ['ytick.minor.left' ]),
560
+ labelright = (rcParams ['ytick.labelright' ] and
561
+ rcParams ['ytick.minor.right' ]),
554
562
which = 'minor' )
555
563
556
564
self .tick_params (
557
565
top = rcParams ['xtick.top' ] and rcParams ['xtick.major.top' ],
558
566
bottom = rcParams ['xtick.bottom' ] and rcParams ['xtick.major.bottom' ],
567
+ labeltop = (rcParams ['xtick.labeltop' ] and
568
+ rcParams ['xtick.major.top' ]),
569
+ labelbottom = (rcParams ['xtick.labelbottom' ] and
570
+ rcParams ['xtick.major.bottom' ]),
559
571
left = rcParams ['ytick.left' ] and rcParams ['ytick.major.left' ],
560
572
right = rcParams ['ytick.right' ] and rcParams ['ytick.major.right' ],
573
+ labelleft = (rcParams ['ytick.labelleft' ] and
574
+ rcParams ['ytick.major.left' ]),
575
+ labelright = (rcParams ['ytick.labelright' ] and
576
+ rcParams ['ytick.major.right' ]),
561
577
which = 'major' )
562
578
563
579
self ._layoutbox = None
0 commit comments