📜  Matplotlib 向轴添加文本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:46.246000             🧑  作者: Mango

代码示例1
#Axis.text() method
https://matplotlib.org/stable/api/_as_gen/matplotlib.axes.Axes.text.html

ax1.text(1.1, -300, 'Label', color='#af0b1e',
         weight='bold', rotation=3)
         
Add the text s to the Axes at location x, y in data coordinates.