pub enum LabelAreaPosition {
Top = 0,
Bottom = 1,
Left = 2,
Right = 3,
}
Expand description
Specifies one of the four label positions around the figure.
This is used to configure the label area size with function
ChartBuilder::set_label_area_size()
.
§Example
use plotters::prelude::*;
let drawing_area = SVGBackend::new("label_area_position.svg", (300, 200)).into_drawing_area();
drawing_area.fill(&WHITE).unwrap();
let mut chart_builder = ChartBuilder::on(&drawing_area);
chart_builder.set_label_area_size(LabelAreaPosition::Bottom, 60).set_label_area_size(LabelAreaPosition::Left, 35);
let mut chart_context = chart_builder.build_cartesian_2d(0.0..4.0, 0.0..3.0).unwrap();
chart_context.configure_mesh().x_desc("Spacious X label area").y_desc("Narrow Y label area").draw().unwrap();
The result is a chart with a spacious X label area and a narrow Y label area:
§See also
Variants§
Top = 0
Top of the figure
Bottom = 1
Bottom of the figure
Left = 2
Left side of the figure
Right = 3
Right side of the figure
Trait Implementations§
Source§impl Clone for LabelAreaPosition
impl Clone for LabelAreaPosition
Source§fn clone(&self) -> LabelAreaPosition
fn clone(&self) -> LabelAreaPosition
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for LabelAreaPosition
Auto Trait Implementations§
impl Freeze for LabelAreaPosition
impl RefUnwindSafe for LabelAreaPosition
impl Send for LabelAreaPosition
impl Sync for LabelAreaPosition
impl Unpin for LabelAreaPosition
impl UnwindSafe for LabelAreaPosition
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 1 byte
Size for each variant:
Top
: 0 bytesBottom
: 0 bytesLeft
: 0 bytesRight
: 0 bytes