Trait lc_render::view::View[][src]

pub trait View {
    fn to_svg(&self) -> Group;
}
Expand description

View contains data representation on a chart.

Required methods

fn to_svg(&self) -> Group[src]

Implementors

impl View for AreaView[src]

fn to_svg(&self) -> Group[src]

Get area SVG representation.

impl View for HorizontalBarView[src]

fn to_svg(&self) -> Group[src]

Get bar view SVG representation.

impl View for LineView[src]

fn to_svg(&self) -> Group[src]

Get line SVG representation.

impl View for ScatterView[src]

fn to_svg(&self) -> Group[src]

Get scatter view SVG representation.

impl View for VerticalBarView[src]

fn to_svg(&self) -> Group[src]

Get bar view SVG representation.