[][src]Struct plotly::box_plot::BoxPlot

pub struct BoxPlot<Y, X> where
    Y: Serialize,
    X: Serialize
{ /* fields omitted */ }

Methods

impl<Y> BoxPlot<Y, f64> where
    Y: Serialize
[src]

pub fn new(y: Vec<Y>) -> Box<BoxPlot<Y, f64>>[src]

impl<Y, X> BoxPlot<Y, X> where
    Y: Serialize,
    X: Serialize
[src]

pub fn new_xy(x: Vec<X>, y: Vec<Y>) -> Box<BoxPlot<Y, X>>[src]

pub fn horizontal(x: Vec<X>) -> Box<BoxPlot<f64, X>>[src]

pub fn name(self, name: &str) -> Box<BoxPlot<Y, X>>[src]

pub fn visible(self, visible: bool) -> Box<BoxPlot<Y, X>>[src]

pub fn show_legend(self, show_legend: bool) -> Box<BoxPlot<Y, X>>[src]

pub fn legend_group(self, legend_group: &str) -> Box<BoxPlot<Y, X>>[src]

pub fn opacity(self, opacity: f64) -> Box<BoxPlot<Y, X>>[src]

pub fn ids<S: AsRef<str>>(self, ids: Vec<S>) -> Box<BoxPlot<Y, X>>[src]

pub fn width(self, width: usize) -> Box<BoxPlot<Y, X>>[src]

pub fn text(self, text: &str) -> Box<BoxPlot<Y, X>>[src]

pub fn text_array<S: AsRef<str>>(self, text: Vec<S>) -> Box<BoxPlot<Y, X>>[src]

pub fn hover_text(self, hover_text: &str) -> Box<BoxPlot<Y, X>>[src]

pub fn hover_text_array<S: AsRef<str>>(
    self,
    hover_text: Vec<S>
) -> Box<BoxPlot<Y, X>>
[src]

pub fn hover_info(self, hover_info: HoverInfo) -> Box<BoxPlot<Y, X>>[src]

pub fn hover_template(self, hover_template: &str) -> Box<BoxPlot<Y, X>>[src]

pub fn hover_template_array<S: AsRef<str>>(
    self,
    hover_template: Vec<S>
) -> Box<BoxPlot<Y, X>>
[src]

pub fn orientation(self, orientation: Orientation) -> Box<BoxPlot<Y, X>>[src]

pub fn alignment_group(self, alignment_group: &str) -> Box<BoxPlot<Y, X>>[src]

pub fn offset_group(self, offset_group: &str) -> Box<BoxPlot<Y, X>>[src]

pub fn marker(self, marker: Marker) -> Box<BoxPlot<Y, X>>[src]

pub fn line(self, line: Line) -> Box<BoxPlot<Y, X>>[src]

pub fn box_mean(self, box_mean: BoxMean) -> Box<BoxPlot<Y, X>>[src]

pub fn box_points(self, box_points: BoxPoints) -> Box<BoxPlot<Y, X>>[src]

pub fn notched(self, notched: bool) -> Box<BoxPlot<Y, X>>[src]

pub fn notch_width(self, notch_width: f64) -> Box<BoxPlot<Y, X>>[src]

pub fn whisker_width(self, whisker_width: f64) -> Box<BoxPlot<Y, X>>[src]

pub fn q1(self, q1: Vec<f64>) -> Box<BoxPlot<Y, X>>[src]

pub fn median(self, median: Vec<f64>) -> Box<BoxPlot<Y, X>>[src]

pub fn q3(self, q3: Vec<f64>) -> Box<BoxPlot<Y, X>>[src]

pub fn lower_fence(self, lower_fence: Vec<f64>) -> Box<BoxPlot<Y, X>>[src]

pub fn notch_span(self, notch_span: Vec<f64>) -> Box<BoxPlot<Y, X>>[src]

pub fn mean(self, mean: Vec<f64>) -> Box<BoxPlot<Y, X>>[src]

pub fn standard_deviation(
    self,
    standard_deviation: Vec<f64>
) -> Box<BoxPlot<Y, X>>
[src]

pub fn quartile_method(
    self,
    quartile_method: QuartileMethod
) -> Box<BoxPlot<Y, X>>
[src]

pub fn fill_color<C: Color>(self, fill_color: C) -> Box<BoxPlot<Y, X>>[src]

pub fn hover_label(self, hover_label: Label) -> Box<BoxPlot<Y, X>>[src]

pub fn hover_on(self, hover_on: &str) -> Box<BoxPlot<Y, X>>[src]

pub fn point_pos(self, point_pos: f64) -> Box<BoxPlot<Y, X>>[src]

pub fn jitter(self, jitter: f64) -> Box<BoxPlot<Y, X>>[src]

pub fn x_calendar(self, x_calendar: Calendar) -> Box<BoxPlot<Y, X>>[src]

pub fn y_calendar(self, y_calendar: Calendar) -> Box<BoxPlot<Y, X>>[src]

Trait Implementations

impl<Y: Debug, X: Debug> Debug for BoxPlot<Y, X> where
    Y: Serialize,
    X: Serialize
[src]

impl<Y, X> Serialize for BoxPlot<Y, X> where
    Y: Serialize,
    X: Serialize,
    Y: Serialize,
    X: Serialize
[src]

impl<X, Y> Trace for BoxPlot<X, Y> where
    X: Serialize,
    Y: Serialize
[src]

Auto Trait Implementations

impl<Y, X> RefUnwindSafe for BoxPlot<Y, X> where
    X: RefUnwindSafe,
    Y: RefUnwindSafe

impl<Y, X> Send for BoxPlot<Y, X> where
    X: Send,
    Y: Send

impl<Y, X> Sync for BoxPlot<Y, X> where
    X: Sync,
    Y: Sync

impl<Y, X> Unpin for BoxPlot<Y, X> where
    X: Unpin,
    Y: Unpin

impl<Y, X> UnwindSafe for BoxPlot<Y, X> where
    X: UnwindSafe,
    Y: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,