oliversm
oliversm

Reputation: 1967

Setting a tick label's background color

I have a subplot and its tick labels overlap with the data. I would like to set the x-tick labels to have a background color (e.g. white). Currently I have only been able to find how to change the label's color, but not the background. I know how to get the effect using a text object as shown below. (NB - I don't want the whole subplot's margin to be colored, but just the tick label).

MWE

enter image description here

import matplotlib as mpl

rc_fonts = {
    "text.usetex": True,
    'text.latex.preview': True,
    "font.size": 50,
    'mathtext.default': 'regular',
    'axes.titlesize': 55,
    "axes.labelsize": 55,
    "legend.fontsize": 50,
    "xtick.labelsize": 50,
    "ytick.labelsize": 50,
    'figure.titlesize': 55,
    'figure.figsize': (10, 6.5),  # 15, 9.3
    'text.latex.preamble': [
        r"""\usepackage{lmodern,amsmath,amssymb,bm,physics,mathtools,nicefrac,letltxmacro,fixcmex}
        """],
    "font.family": "serif",
    "font.serif": "computer modern roman",
}
mpl.rcParams.update(rc_fonts)
import matplotlib.pylab as plt
from mpl_toolkits.axes_grid1.inset_locator import inset_axes, InsetPosition, mark_inset
from numpy import linspace, sin


x = linspace(0, 1, 100)
plt.clf()
ax1 = plt.gca()
ax2 = plt.axes([0, 0, 1, 1], label=str(2))
ip = InsetPosition(ax1, [0.08, 0.63, 0.45, 0.3])
ax2.set_axes_locator(ip)
ax1.plot(x, x)
ax1.plot(x, x + 0.3)
ax1.set_xlim(0, 1)
ax1.set_ylim(0, 1)
ax2.xaxis.set_tick_params(labelcolor='r')
ax1.text(0.3, 0.3, '$1$', transform=ax1.transAxes, horizontalalignment='center', verticalalignment='center', color='black', backgroundcolor='white')

Upvotes: 6

Views: 8392

Answers (2)

Markus Dutschke
Markus Dutschke

Reputation: 10626

enter image description here

import matplotlib.pyplot as plt
import numpy as np

fig, ax = plt.subplots()

ax.plot(np.linspace(0, 1, 5), np.random.rand(5))

# set xticklabels
xtl = []
for x in ax.get_xticks():
    xtl += ['lbl: {:.1f}'.format(x)]
ax.set_xticklabels(xtl)

# modify labels
for tl in ax.get_xticklabels():
    txt = tl.get_text()
    if txt == 'lbl: 1.0':
        txt += ' (!)'
        tl.set_backgroundcolor('C3')
    tl.set_text(txt)

Upvotes: 6

ImportanceOfBeingErnest
ImportanceOfBeingErnest

Reputation: 339705

To set a label's background color you may use the same property as for a text, essentially because a label is a text.

plt.setp(ax2.get_xticklabels(), backgroundcolor="limegreen")

enter image description here

For more sophisticated backgrounds, you could also use the bbox property.

bbox = dict(boxstyle="round", ec="limegreen", fc="limegreen", alpha=0.5)
plt.setp(ax2.get_xticklabels(), bbox=bbox)

enter image description here

Upvotes: 10

Related Questions