我需要使用set_title()绘制情节标题,其背景显示有一定程度的透明度。
我尝试了三种方法(一种来自this answer),但似乎都没有。它们要么使文本的字体或边缘透明,而不是背景本身。
MWE:
import matplotlib.pyplot as plt
fig, ax = plt.subplots(1)
ax.minorticks_on()
ax.grid(b=True, which='minor', color='k', linestyle='--', lw=0.5,
zorder=1)
# Method 1
ax.set_title("Title", x=0.5, y=0.92, fontsize=13, alpha=0.2,
bbox=dict(facecolor='none'))
# Method 2
# ax.set_title("Title", x=0.5, y=0.92, fontsize=13,
# bbox=dict(facecolor='none', alpha=0.2))
# Method 3
# t = ax.set_title("Title", x=0.5, y=0.92, fontsize=13)
# t.set_bbox(dict(facecolor='none', alpha=0.2, edgecolor='k'))
plt.savefig('test.png')
输出:
答案 0 :(得分:3)
你快到了。问题是你有facecolor='none'
,所以即使设置了alpha
,也没有什么可以透明,你根本看不到背景。
您可以通过设置facecolor='white'
来更改此设置,例如,修改“方法2”:
ax.set_title("Title", x=0.5, y=0.92, fontsize=13,
bbox=dict(facecolor='white', alpha=0.5))
这也有使黑色边框透明的副作用。
解决该问题的方法是明确将facecolor
和edgecolor
定义为(R,G,B,A)
元组,并确保edgecolor
具有alpha=1
:< / p>
ax.set_title("Title", x=0.5, y=0.92, fontsize=13,
bbox=dict(facecolor=(1,1,1,0.5),edgecolor=(0,0,0,1)))