Set the fillstyle. Parameters ---------- fillstyle : {'full', 'left', 'right', 'bottom', 'top', 'none'} The part of the marker surface that is colored with markerfacecolor.
(self, fillstyle)
| 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 |