@@ -549,6 +549,10 @@ 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' ],
554558 labelleft = (rcParams ['ytick.labelleft' ] and
@@ -560,6 +564,10 @@ def __init__(self, fig, rect,
560564 self .tick_params (
561565 top = rcParams ['xtick.top' ] and rcParams ['xtick.major.top' ],
562566 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' ]),
563571 left = rcParams ['ytick.left' ] and rcParams ['ytick.major.left' ],
564572 right = rcParams ['ytick.right' ] and rcParams ['ytick.major.right' ],
565573 labelleft = (rcParams ['ytick.labelleft' ] and
0 commit comments