Sets the box body properties as a Python dict string Requires [`set_patch_artist(true)`](Self::set_patch_artist). Example: `"{'facecolor': 'lightblue', 'edgecolor': 'black'}"`
(&mut self, props: &str)
| 243 | /// Requires [`set_patch_artist(true)`](Self::set_patch_artist). |
| 244 | /// Example: `"{'facecolor': 'lightblue', 'edgecolor': 'black'}"` |
| 245 | pub fn set_boxprops(&mut self, props: &str) -> &mut Self { |
| 246 | self.box_props = props.to_string(); |
| 247 | self |
| 248 | } |
| 249 | |
| 250 | /// Sets the whisker line properties as a Python dict string |
| 251 | /// |
no outgoing calls