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

Method set_fillstyle

lib/matplotlib/lines.py:533–551  ·  view source on GitHub ↗

Set the marker fill style. Parameters ---------- fs : {'full', 'left', 'right', 'bottom', 'top', 'none'} Possible values: - 'full': Fill the whole marker with the *markerfacecolor*. - 'left', 'right', 'bottom', 'top': Fill the ma

(self, fs)

Source from the content-addressed store, hash-verified

531 return self._marker.get_fillstyle()
532
533 def set_fillstyle(self, fs):
534 """
535 Set the marker fill style.
536
537 Parameters
538 ----------
539 fs : {'full', 'left', 'right', 'bottom', 'top', 'none'}
540 Possible values:
541
542 - 'full': Fill the whole marker with the *markerfacecolor*.
543 - 'left', 'right', 'bottom', 'top': Fill the marker half at
544 the given side with the *markerfacecolor*. The other
545 half of the marker is filled with *markerfacecoloralt*.
546 - 'none': No filling.
547
548 For examples see :ref:`marker_fill_styles`.
549 """
550 self.set_marker(MarkerStyle(self._marker.get_marker(), fs))
551 self.stale = True
552
553 def set_markevery(self, every):
554 """

Callers

nothing calls this directly

Calls 3

set_markerMethod · 0.95
MarkerStyleClass · 0.85
get_markerMethod · 0.45

Tested by

no test coverage detected