Struct rustplot::chart_builder::Histogram [] [src]

pub struct Histogram {
    pub chart_prop: ChartProp,
    pub axis_prop: AxisProp,
    // some fields omitted
}

Structure used for storing chart related data and the drawing of an Histogram.

This chart is used for statistical analysis of data. Shows the distribution of groups data.

Fields

Methods

impl Histogram
[src]

[src]

Creates a new instance of a Histogram.

chart_title is the String to specify the name of the chart displayed at the top of the window.

new_data is the number data used to generate the frequencies for drawing the histogram.

Trait Implementations

impl Clone for Histogram
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Chart for Histogram
[src]

[src]

Draws the chart specified for the instance that this function is called on.

Auto Trait Implementations

impl Send for Histogram

impl Sync for Histogram