matplotlib.pyplot.thetagrids(*args, **kwargs)
[source]
Get or set the theta gridlines on the current polar plot.
Call signatures:
lines, labels = thetagrids() lines, labels = thetagrids(angles, labels=None, fmt=None, **kwargs)
When called with no arguments, thetagrids
simply returns the tuple (lines, labels). When called with arguments, the labels will appear at the specified angles.
Parameters: |
|
---|---|
Returns: |
|
Other Parameters: |
|
See also
# 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') )
© 2012–2018 Matplotlib Development Team. All rights reserved.
Licensed under the Matplotlib License Agreement.
https://matplotlib.org/3.1.1/api/_as_gen/matplotlib.pyplot.thetagrids.html