Add method to set a Plot's margin (#1308)

This commit is contained in:
Simon Gardling 2022-03-08 09:50:53 -05:00 committed by GitHub
parent d8300037ad
commit 0e7a4fdbfd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -287,6 +287,14 @@ impl Plot {
self
}
/// Set the side margin as a fraction of the plot size.
///
/// For instance, a value of `0.1` will add 10% space on both sides.
pub fn set_margin_fraction(mut self, margin_fraction: Vec2) -> Self {
self.margin_fraction = margin_fraction;
self
}
/// Whether to allow zooming in the plot by dragging out a box with the secondary mouse button.
///
/// Default: `true`.