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)
| 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 | """ |
nothing calls this directly
no test coverage detected