pub trait Tooltipper<A: Scalar, B: Scalar>: Fn(A, B) -> String { }
Expand description

Describes a closure that takes data values (x, y) and produces tooltip strings for each datapoint.

Implementors§

source§

impl<A: Scalar, B: Scalar, T: Fn(A, B) -> String> Tooltipper<A, B> for T