matplotlib.pyplot.text()结构及用法||参数详解
程序员文章站
2022-03-18 23:39:05
...
-
matplotlib.pyplot.text()官方文档
matplotlib.pyplot.text(x, y, s, fontdict=None, withdash=False, **kwargs)
通过函数方式,向对象添加对象,确切的说是向的位置添加文本。返回一个text实例。
-
x, y : scalars 防止text的位置
-
s : str 内容text
-
fontdict : dictionary, optional, default: None 一个定义s格式的dict
-
withdash : boolean, optional, default: False。如果True则创建一个
TextWithDash
实例。以下为其他常用参数1:
-
fontsize
设置字体大小,默认12,可选参数 [‘xx-small’, ‘x-small’, ‘small’, ‘medium’, ‘large’,‘x-large’, ‘xx-large’] -
fontweight
设置字体粗细,可选参数 [‘light’, ‘normal’, ‘medium’, ‘semibold’, ‘bold’, ‘heavy’, ‘black’] -
fontstyle
设置字体类型,可选参数[ ‘normal’ | ‘italic’ | ‘oblique’ ],italic斜体,oblique倾斜 -
verticalalignment
设置水平对齐方式 ,可选参数 : ‘center’ , ‘top’ , ‘bottom’ ,‘baseline’ -
horizontalalignment
设置垂直对齐方式,可选参数:left,right,center -
rotation
(旋转角度)可选参数为:vertical,horizontal 也可以为数字 -
alpha
透明度,参数值0至1之间 -
backgroundcolor
标题背景颜色 -
bbox
给标题增加外框 ,常用参数如下:-
boxstyle
方框外形 -
facecolor
(简写fc)背景颜色 -
edgecolor
(简写ec)边框线条颜色 -
edgewidth
边框线条大小
-