@@ -549,15 +549,31 @@ def __init__(self, fig, rect,
549549 self .tick_params (
550550 top = rcParams ['xtick.top' ] and rcParams ['xtick.minor.top' ],
551551 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' ]),
552556 left = rcParams ['ytick.left' ] and rcParams ['ytick.minor.left' ],
553557 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' ]),
554562 which = 'minor' )
555563
556564 self .tick_params (
557565 top = rcParams ['xtick.top' ] and rcParams ['xtick.major.top' ],
558566 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' ]),
559571 left = rcParams ['ytick.left' ] and rcParams ['ytick.major.left' ],
560572 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' ]),
561577 which = 'major' )
562578
563579 self ._layoutbox = None
0 commit comments