Question:
I’m having troubles to plot a spyder graph, I’m making it on pyside with matplotlib Here is my class(widget in a widget):AttributeError: ‘Figure’ object has no property ‘polar’
in line
Answer:
Shouldn’t you pass the “polar” keyword in subplot_kw ? See here : https://matplotlib.org/3.5.0/api/_as_gen/matplotlib.pyplot.subplots.htmlAs for the error in itself, nor subplots nor figure have a “polar” argument, that’s what the error message is telling you (you can see in the link above that extra keyword arguments passed to pyplot.subplots get passed to the pyplot.figure call).
If you have better answer, please add a comment about this, thank you!