MCPcopy Create free account
hub / github.com/matplotlib/matplotlib / fill

Method fill

galleries/examples/specialty_plots/radar_chart.py:65–67  ·  view source on GitHub ↗

Override fill so that line is closed by default

(self, *args, closed=True, **kwargs)

Source from the content-addressed store, hash-verified

63 self.set_theta_zero_location('N')
64
65 def fill(self, *args, closed=True, **kwargs):
66 """Override fill so that line is closed by default"""
67 return super().fill(closed=closed, *args, **kwargs)
68
69 def plot(self, *args, **kwargs):
70 """Override plot so that line is closed by default"""

Callers 6

plot_streamplot.pyFile · 0.45
radar_chart.pyFile · 0.45
fill_spiral.pyFile · 0.45
fill.pyFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected