我正在使用matplotlib动态图的锚定文本:
from mpl_toolkits.axes_grid.anchored_artists import AnchoredText
...
at = AnchoredText('flag: ' + var,
prop=dict(size=8), frameon=True,
loc=1,
)
at.patch.set_boxstyle('round,pad=0.,rounding_size=0.2')
ax.add_artist(at)
如何添加垂直对齐的多个锚文本?
Somethig喜欢这样:
最终: