Struct xlsxwriter::ChartLine[][src]

pub struct ChartLine {
    pub color: FormatColor,
    pub none: bool,
    pub width: f32,
    pub dash_type: ChartDashType,
    pub transparency: u8,
}

Struct to represent a chart line.

Fields

color: FormatColor

The chart font color.

none: bool

Turn off/hide line. Set to false or true.

width: f32

Width of the line in increments of 0.25. Default is 2.25.

dash_type: ChartDashType

The line dash type.

transparency: u8

Set the transparency of the line. 0 - 100. Default 0.

Implementations

impl ChartLine[src]

pub fn new() -> Self[src]

Trait Implementations

impl Clone for ChartLine[src]

impl Copy for ChartLine[src]

impl Default for ChartLine[src]

impl PartialEq<ChartLine> for ChartLine[src]

impl PartialOrd<ChartLine> for ChartLine[src]

impl StructuralPartialEq for ChartLine[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.