python-3.x – python3和matplotlib:更改锚定文本的背景颜色

好的我是这个社区的新手,我希望这不是一个“太noob”的问题,但我不知道如何在
python3中更改AnchoredText中背景的颜色.

到目前为止这是我的代码:

ax2.set_xticklabels([])
ax2.set_yticklabels([])

anchored_text = AnchoredText(s=text_str, loc=2, prop=Afont)
ax2.add_artist(anchored_text)
# anchored_text.set_bbox({'facecolor':blue})
# anchored_text.txt.set_bbox({'facecolor':blue})

Afont = {'family': 'serif',
        # 'facecolor': 'blue',
        'color':  'white',
        'weight': 'normal',
        'size': 14,
        }

没有任何评论的线条能够解决问题.

必须有办法,但我现在被困住了.我该怎么做?

最佳答案 好吧,它似乎既简单又难.在Aform中我可以添加backgroundcolor属性并进行更改.

这是这样做的方法:

Afont = {'family': 'serif',
        'backgroundcolor': 'blue',
        'color':  'white',
        'weight': 'normal',
        'size': 14,
        }
点赞