matplotlib.pyplot.thetagrids #

matplotlib.pyplot。thetagrids (角度=,标签=, fmt =, ** kwargs ) [来源] #

获取或设置当前极坐标图上的 theta 网格线。

来电签名:

lines, labels = thetagrids()
lines, labels = thetagrids(angles, labels=None, fmt=None, **kwargs)

当不带参数调用时,thetagrids只返回元组(标签)。当使用参数调用时,标签将以指定的角度出现。

参数
带有浮点数、度数的角度元组

theta 网格线的角度。

用字符串或无标签元组

在每个径向网格线上使用的标签。将 projections.polar.ThetaFormatter在 None 时使用。

fmt str 或无

中使用的格式字符串matplotlib.ticker.FormatStrFormatter。例如'%f'。请注意,将使用以弧度为单位的角度。

返回
列表lines.Line2D

theta 网格线。

标签列表text.Text

刻度标签。

其他参数
**kwargs

kwargs是标签的可选Text属性。

例子

# set the locations of the angular gridlines
lines, labels = thetagrids(range(45, 360, 90))

# set the locations and labels of the angular gridlines
lines, labels = thetagrids(range(45, 360, 90), ('NE', 'NW', 'SW', 'SE'))