Matplotlib:多个垂直对齐的锚定文本

时间:2014-05-16 02:23:32

标签: python-2.7 matplotlib

我正在使用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喜欢这样:

enter image description here

最终:

enter image description here

0 个答案:

没有答案