Struct plotly::traces::bar::Bar

source ·
pub struct Bar<X, Y>where
    X: Serialize + Clone,
    Y: Serialize + Clone,{ /* private fields */ }
Expand description

Construct a bar trace.

Examples

use plotly::Bar;

let x = vec![0, 1, 2, 3, 4, 5];
let y = vec![0, 2, 4, 6, 8, 10];

let trace = Bar::new(x, y).show_legend(true).opacity(0.5);

let expected = serde_json::json!({
    "type": "bar",
    "x": [0, 1, 2, 3, 4, 5],
    "y": [0, 2, 4, 6, 8, 10],
    "showlegend": true,
    "opacity": 0.5
});

assert_eq!(serde_json::to_value(trace).unwrap(), expected);

Implementations§

source§

impl<X, Y> Bar<X, Y>where X: Serialize + Clone, Y: Serialize + Clone,

source

pub fn x(self, value: Vec<X>) -> Box<Self>

source

pub fn modify_all_x(value: Vec<X>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_x(values: Vec<Vec<X>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn y(self, value: Vec<Y>) -> Box<Self>

source

pub fn modify_all_y(value: Vec<Y>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_y(values: Vec<Vec<Y>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn name(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_name(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_name(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn visible(self, value: Visible) -> Box<Self>

source

pub fn modify_all_visible(value: Visible) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_visible(values: Vec<Visible>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn show_legend(self, value: bool) -> Box<Self>

source

pub fn modify_all_show_legend(value: bool) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_show_legend(values: Vec<bool>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn legend_group(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_legend_group(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_legend_group(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn legend_group_title(self, value: LegendGroupTitle) -> Box<Self>

source

pub fn modify_all_legend_group_title( value: LegendGroupTitle ) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_legend_group_title( values: Vec<LegendGroupTitle> ) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn opacity(self, value: f64) -> Box<Self>

source

pub fn modify_all_opacity(value: f64) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_opacity(values: Vec<f64>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn ids(self, value: Vec<impl AsRef<str>>) -> Box<Self>

source

pub fn modify_all_ids(value: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_ids(values: Vec<Vec<impl AsRef<str>>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn width(self, value: usize) -> Box<Self>

source

pub fn modify_all_width(value: usize) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_width(values: Vec<usize>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn offset(self, value: usize) -> Box<Self>

source

pub fn modify_all_offset(value: usize) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_offset(values: Vec<usize>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn offset_array(self, value: Vec<usize>) -> Box<Self>

source

pub fn text(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_text(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_text(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn text_array(self, value: Vec<impl AsRef<str>>) -> Box<Self>

source

pub fn text_position(self, value: TextPosition) -> Box<Self>

source

pub fn modify_all_text_position(value: TextPosition) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_text_position(values: Vec<TextPosition>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn text_position_array(self, value: Vec<TextPosition>) -> Box<Self>

source

pub fn text_template(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_text_template(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_text_template(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn text_template_array(self, value: Vec<impl AsRef<str>>) -> Box<Self>

source

pub fn hover_text(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_hover_text(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_hover_text(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn hover_text_array(self, value: Vec<impl AsRef<str>>) -> Box<Self>

source

pub fn hover_info(self, value: HoverInfo) -> Box<Self>

source

pub fn modify_all_hover_info(value: HoverInfo) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_hover_info(values: Vec<HoverInfo>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn hover_template(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_hover_template(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_hover_template(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn hover_template_array(self, value: Vec<impl AsRef<str>>) -> Box<Self>

source

pub fn x_axis(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_x_axis(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_x_axis(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn y_axis(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_y_axis(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_y_axis(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn orientation(self, value: Orientation) -> Box<Self>

source

pub fn modify_all_orientation(value: Orientation) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_orientation(values: Vec<Orientation>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn alignment_group(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_alignment_group(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_alignment_group(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn offset_group(self, value: impl AsRef<str>) -> Box<Self>

source

pub fn modify_all_offset_group(value: impl AsRef<str>) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_offset_group(values: Vec<impl AsRef<str>>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn marker(self, value: Marker) -> Box<Self>

source

pub fn modify_all_marker(value: Marker) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_marker(values: Vec<Marker>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn text_angle(self, value: f64) -> Box<Self>

source

pub fn modify_all_text_angle(value: f64) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_text_angle(values: Vec<f64>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn text_font(self, value: Font) -> Box<Self>

source

pub fn modify_all_text_font(value: Font) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_text_font(values: Vec<Font>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn error_x(self, value: ErrorData) -> Box<Self>

source

pub fn modify_all_error_x(value: ErrorData) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_error_x(values: Vec<ErrorData>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn error_y(self, value: ErrorData) -> Box<Self>

source

pub fn modify_all_error_y(value: ErrorData) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_error_y(values: Vec<ErrorData>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn clip_on_axis(self, value: bool) -> Box<Self>

source

pub fn modify_all_clip_on_axis(value: bool) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_clip_on_axis(values: Vec<bool>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn constrain_text(self, value: ConstrainText) -> Box<Self>

source

pub fn modify_all_constrain_text(value: ConstrainText) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_constrain_text(values: Vec<ConstrainText>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn hover_label(self, value: Label) -> Box<Self>

source

pub fn modify_all_hover_label(value: Label) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_hover_label(values: Vec<Label>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn inside_text_anchor(self, value: TextAnchor) -> Box<Self>

source

pub fn modify_all_inside_text_anchor(value: TextAnchor) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_inside_text_anchor(values: Vec<TextAnchor>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn inside_text_font(self, value: Font) -> Box<Self>

source

pub fn modify_all_inside_text_font(value: Font) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_inside_text_font(values: Vec<Font>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn outside_text_font(self, value: Font) -> Box<Self>

source

pub fn modify_all_outside_text_font(value: Font) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_outside_text_font(values: Vec<Font>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn x_calendar(self, value: Calendar) -> Box<Self>

source

pub fn modify_all_x_calendar(value: Calendar) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_x_calendar(values: Vec<Calendar>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source

pub fn y_calendar(self, value: Calendar) -> Box<Self>

source

pub fn modify_all_y_calendar(value: Calendar) -> RestyleBar<X, Y>

Apply the same restyling to all the traces

source

pub fn modify_y_calendar(values: Vec<Calendar>) -> RestyleBar<X, Y>

Apply the restyling individually to each trace. Caller is responsible to set the length of the vector to be equal to the number of traces

source§

impl<X, Y> Bar<X, Y>where X: Serialize + Clone, Y: Serialize + Clone,

source

pub fn new(x: Vec<X>, y: Vec<Y>) -> Box<Self>

Trait Implementations§

source§

impl<X, Y> Clone for Bar<X, Y>where X: Serialize + Clone + Clone, Y: Serialize + Clone + Clone,

source§

fn clone(&self) -> Bar<X, Y>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<X, Y> Debug for Bar<X, Y>where X: Serialize + Clone + Debug, Y: Serialize + Clone + Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<X, Y> Default for Bar<X, Y>where X: Serialize + Clone, Y: Serialize + Clone,

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<X, Y> Serialize for Bar<X, Y>where X: Serialize + Clone + Serialize, Y: Serialize + Clone + Serialize,

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<X, Y> Trace for Bar<X, Y>where X: Serialize + Clone, Y: Serialize + Clone,

source§

fn to_json(&self) -> String

Auto Trait Implementations§

§

impl<X, Y> !RefUnwindSafe for Bar<X, Y>

§

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

§

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

§

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

§

impl<X, Y> !UnwindSafe for Bar<X, Y>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Serialize for Twhere T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V