pub trait Plot<This> {
    type Properties;

    fn plot<F>(&mut self, this: This, function: F) -> &mut Self
   where
        F: FnOnce(&mut Self::Properties) -> &mut Self::Properties
; }
Expand description

Overloaded plot method

Required Associated Types

The properties associated to the plot

Required Methods

Plots some data with some configuration

Implementors