Home
last modified time | relevance | path

Searched refs:whisker_width (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/plotters/src/element/
Dboxplot.rs55 whisker_width: f64, field
79 whisker_width: 1.0, in new_vertical()
105 whisker_width: 1.0, in new_horizontal()
158 pub fn whisker_width(mut self, whisker_width: f64) -> Self { in whisker_width() method
159 self.whisker_width = whisker_width; in whisker_width()
207 |coord| O::with_offset(moved(coord), -width * self.whisker_width / 2.0); in draw()
209 |coord| O::with_offset(moved(coord), width * self.whisker_width / 2.0); in draw()
/external/rust/crates/plotters/examples/
Dboxplot.rs91 .whisker_width(0.5) in main()