Enables Patch artist drawing so boxes can be filled with color By default Matplotlib uses Line2D to draw boxes. Setting this to `true` allows [`set_boxprops`](Self::set_boxprops) to fill boxes with color.
(&mut self, flag: bool)
| 224 | /// By default Matplotlib uses Line2D to draw boxes. Setting this to `true` |
| 225 | /// allows [`set_boxprops`](Self::set_boxprops) to fill boxes with color. |
| 226 | pub fn set_patch_artist(&mut self, flag: bool) -> &mut Self { |
| 227 | self.patch_artist = flag; |
| 228 | self |
| 229 | } |
| 230 | |
| 231 | /// Sets the median line properties as a Python dict string |
| 232 | /// |
no outgoing calls