MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / fill

Method fill

DemoPrograms/Demo_Matplotlib_Browser.py:479–482  ·  view source on GitHub ↗

Override fill so that line is closed by default

(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

477 self.set_theta_zero_location('N')
478
479 def fill(self, *args, **kwargs):
480 """Override fill so that line is closed by default"""
481 closed = kwargs.pop('closed', True)
482 return super(RadarAxes, self).fill(closed=closed, *args, **kwargs)
483
484 def plot(self, *args, **kwargs):
485 """Override plot so that line is closed by default"""

Callers 6

__init__Method · 0.45
PyplotRadarChartFunction · 0.45
_display_notificationFunction · 0.45
display_notificationFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected