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' ))