[][src]Struct plotly_types::traces::parcoords::Domain

pub struct Domain<'a> { /* fields omitted */ }

Implementations

impl<'a> Domain<'a>[src]

pub fn x(&mut self, x: &'a InfoArray) -> &mut Self[src]

Sets the horizontal domain of this parcoords trace (in plot fraction).

default: [0,1]

pub fn y(&mut self, y: &'a InfoArray) -> &mut Self[src]

Sets the vertical domain of this parcoords trace (in plot fraction).

default: [0,1]

pub fn row(&mut self, row: u64) -> &mut Self[src]

If there is a layout grid, use the domain for this row in the grid for this parcoords trace .

default: 0

pub fn column(&mut self, column: u64) -> &mut Self[src]

If there is a layout grid, use the domain for this column in the grid for this parcoords trace .

default: 0

Trait Implementations

impl<'a> Default for Domain<'a>[src]

impl<'a> Serialize for Domain<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Domain<'a>

impl<'a> Send for Domain<'a>

impl<'a> Sync for Domain<'a>

impl<'a> Unpin for Domain<'a>

impl<'a> UnwindSafe for Domain<'a>

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.