当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python matplotlib FancyBboxPatch.set_boxstyle用法及代码示例


本文简要介绍 python 语言中 matplotlib.patches.FancyBboxPatch.set_boxstyle 的用法。

用法

set_boxstyle(boxstyle=None, **kwargs)

设置框样式,可能还有更多属性。

以前的框样式的属性不会被重用。

如果没有参数(或使用 boxstyle=None ),可用的框样式将作为人类可读的字符串返回。

参数
boxstyle str 或 BoxStyle

框的样式: BoxStyle 实例或字符串,它是样式名称和可选的逗号分隔属性(例如"Round,pad=0.2")。这样的字符串用于构造 BoxStyle 对象,如该类中所述。

可以使用以下框样式:

名字

属性

Square

square

填充=0.3

Circle

circle

填充=0.3

Ellipse

ellipse

填充=0.3

LArrow

larrow

填充=0.3

RArrow

rarrow

填充=0.3

DArrow

darrow

填充=0.3

Round

round

填充=0.3,rounding_size=无

Round4

round4

填充=0.3,rounding_size=无

Sawtooth

sawtooth

填充=0.3,tooth_size=无

Roundtooth

roundtooth

填充=0.3,tooth_size=无

**kwargs

框样式的附加属性。有关支持的参数,请参见上表。

例子

set_boxstyle("Round,pad=0.2")
set_boxstyle("round", pad=0.2)

相关用法


注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.patches.FancyBboxPatch.set_boxstyle。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。