本文主要是介绍matplotlib.pyplot.text()结构及用法||参数详解,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
-
matplotlib.pyplot.text()官方文档
matplotlib.pyplot.text(x, y, s, fontdict=None, withdash=False, **kwargs)
通过函数方式,向 a x e s axes axes对象添加 t e x t text text对象,确切的说是向 a x e s axes axes的 ( x , y ) (x,y) (x,y)位置添加 s s s文本。返回一个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
边框线条大小
matplotlib命令与格式:标题(title),标注(annotate),文字说明(text) ↩︎
这篇关于matplotlib.pyplot.text()结构及用法||参数详解的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!