欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

matplotlib.pyplot.text()结构及用法||参数详解

程序员文章站 2022-03-18 23:39:05
...
matplotlib.pyplot.text(x, y, s, fontdict=None, withdash=False, **kwargs)

通过函数方式,向axesaxes对象添加texttext对象,确切的说是向axesaxes(x,y)(x,y)位置添加ss文本。返回一个text实例。

  • 参数详解

  1. x, y : scalars 防止text的位置

  2. s : str 内容text

  3. fontdict : dictionary, optional, default: None 一个定义s格式的dict

  4. withdash : boolean, optional, default: False。如果True则创建一个 TextWithDash实例。

    以下为其他常用参数1

  5. fontsize设置字体大小,默认12,可选参数 [‘xx-small’, ‘x-small’, ‘small’, ‘medium’, ‘large’,‘x-large’, ‘xx-large’]

  6. fontweight设置字体粗细,可选参数 [‘light’, ‘normal’, ‘medium’, ‘semibold’, ‘bold’, ‘heavy’, ‘black’]

  7. fontstyle设置字体类型,可选参数[ ‘normal’ | ‘italic’ | ‘oblique’ ],italic斜体,oblique倾斜

  8. verticalalignment设置水平对齐方式 ,可选参数 : ‘center’ , ‘top’ , ‘bottom’ ,‘baseline’

  9. horizontalalignment设置垂直对齐方式,可选参数:left,right,center

  10. rotation(旋转角度)可选参数为:vertical,horizontal 也可以为数字

  11. alpha透明度,参数值0至1之间

  12. backgroundcolor标题背景颜色

  13. bbox给标题增加外框 ,常用参数如下:

    1. boxstyle方框外形
    2. facecolor(简写fc)背景颜色
    3. edgecolor(简写ec)边框线条颜色
    4. edgewidth边框线条大小
  • Reference


  1. matplotlib命令与格式:标题(title),标注(annotate),文字说明(text) ↩︎