Sets the width of the color bar. # Argument `width` - A `f64` value between 0.0 and 1.0 specifying the width as a fraction of the subplot width.
(mut self, width: f64)
| 215 | /// |
| 216 | /// * `width` - A `f64` value between 0.0 and 1.0 specifying the width as a fraction of the subplot width. |
| 217 | pub fn width(mut self, width: f64) -> Self { |
| 218 | self.width = Some(width); |
| 219 | self |
| 220 | } |
| 221 | |
| 222 | /// Sets the angle of the tick labels on the color bar. |
| 223 | /// |
no outgoing calls