matplotlib.pyplot.rgrids #
- matplotlib.pyplot。rgrids (半径=无,标签=无,角度=无, fmt =无, ** kwargs ) [来源] #
获取或设置当前极坐标图上的径向网格线。
来电签名:
lines, labels = rgrids() lines, labels = rgrids(radii, labels=None, angle=22.5, fmt=None, **kwargs)
当不带参数调用时,
rgrids
只返回元组(行,标签)。当使用参数调用时,标签将出现在指定的径向距离和角度。- 参数:
- 带浮点数的半径元组
径向网格线的半径
- 用字符串或无标签元组
在每个径向网格线上使用的标签。将
matplotlib.ticker.ScalarFormatter
在 None 时使用。- 角度浮动
半径标签的角度位置,以度为单位。
- fmt str 或无
中使用的格式字符串
matplotlib.ticker.FormatStrFormatter
。例如'%f'。
- 返回:
- 行列表
lines.Line2D
径向网格线。
- 标签列表
text.Text
刻度标签。
- 行列表
- 其他参数:
- **kwargs
kwargs是标签的可选
Text
属性。
也可以看看
例子
# set the locations of the radial gridlines lines, labels = rgrids( (0.25, 0.5, 1.0) ) # set the locations and labels of the radial gridlines lines, labels = rgrids( (0.25, 0.5, 1.0), ('Tom', 'Dick', 'Harry' ))