pub struct Line { /* private fields */ }
Expand description
A series of values forming a path.
Implementations
sourceimpl Line
impl Line
pub fn new(series: impl Into<PlotPoints>) -> Line
sourcepub fn highlight(self, highlight: bool) -> Line
pub fn highlight(self, highlight: bool) -> Line
Highlight this line in the plot by scaling up the line.
sourcepub fn width(self, width: impl Into<f32>) -> Line
pub fn width(self, width: impl Into<f32>) -> Line
Stroke width. A high value means the plot thickens.
sourcepub fn color(self, color: impl Into<Color32>) -> Line
pub fn color(self, color: impl Into<Color32>) -> Line
Stroke color. Default is Color32::TRANSPARENT
which means a color will be auto-assigned.
sourcepub fn fill(self, y_reference: impl Into<f32>) -> Line
pub fn fill(self, y_reference: impl Into<f32>) -> Line
Fill the area between this line and a given horizontal reference line.
Auto Trait Implementations
impl !RefUnwindSafe for Line
impl !Send for Line
impl !Sync for Line
impl Unpin for Line
impl !UnwindSafe for Line
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more