MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / _set_fillstyle

Method _set_fillstyle

lib/matplotlib/markers.py:275–287  ·  view source on GitHub ↗

Set the fillstyle. Parameters ---------- fillstyle : {'full', 'left', 'right', 'bottom', 'top', 'none'} The part of the marker surface that is colored with markerfacecolor.

(self, fillstyle)

Source from the content-addressed store, hash-verified

273 return self._fillstyle
274
275 def _set_fillstyle(self, fillstyle):
276 """
277 Set the fillstyle.
278
279 Parameters
280 ----------
281 fillstyle : {'full', 'left', 'right', 'bottom', 'top', 'none'}
282 The part of the marker surface that is colored with
283 markerfacecolor.
284 """
285 fillstyle = mpl._val_or_rc(fillstyle, 'markers.fillstyle')
286 _api.check_in_list(self.fillstyles, fillstyle=fillstyle)
287 self._fillstyle = fillstyle
288
289 def get_joinstyle(self):
290 return self._joinstyle.name

Callers 1

__init__Method · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected