本文简要介绍 python 语言中 matplotlib.patches.FancyBboxPatch.set_boxstyle
的用法。
-
设置框样式,可能还有更多属性。
以前的框样式的属性不会被重用。
如果没有参数(或使用
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
-
框样式的附加属性。有关支持的参数,请参见上表。
- boxstyle str 或
例子
set_boxstyle("Round,pad=0.2") set_boxstyle("round", pad=0.2)
用法
set_boxstyle(boxstyle=None, **kwargs)
相关用法
- Python matplotlib FancyBboxPatch.set_bounds用法及代码示例
- Python matplotlib FancyArrowPatch.set_arrowstyle用法及代码示例
- Python matplotlib FancyArrowPatch.set_connectionstyle用法及代码示例
- Python matplotlib Figure.set_size_inches用法及代码示例
- Python matplotlib FontManager用法及代码示例
- Python matplotlib Figure.add_axes用法及代码示例
- Python matplotlib FigureBase.subplots用法及代码示例
- Python matplotlib FigureBase.align_ylabels用法及代码示例
- Python matplotlib FigureBase.align_xlabels用法及代码示例
- Python matplotlib FigureBase.add_axes用法及代码示例
- Python matplotlib FigureMpl用法及代码示例
- Python matplotlib FigureBase.legend用法及代码示例
- Python matplotlib FigureCanvasBase.mpl_connect用法及代码示例
- Python matplotlib Figure.figimage用法及代码示例
- Python matplotlib Figure.add_subplot用法及代码示例
- Python matplotlib Figure.legend用法及代码示例
- Python matplotlib FigureBase.sticky_edges用法及代码示例
- Python matplotlib FigureCanvasBase.mpl_disconnect用法及代码示例
- Python matplotlib FigureBase.add_subplot用法及代码示例
- Python matplotlib Figure.savefig用法及代码示例
- Python matplotlib Figure.colorbar用法及代码示例
- Python matplotlib Figure.add_gridspec用法及代码示例
- Python matplotlib Figure.sticky_edges用法及代码示例
- Python matplotlib FigureBase.colorbar用法及代码示例
- Python matplotlib FigureCanvasBase.new_timer用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.patches.FancyBboxPatch.set_boxstyle。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。