Lines Matching +full:prelude +full:- +full:ls
21 /// - `x`: The x coordinate
22 /// - `open`: The open value
23 /// - `high`: The high value
24 /// - `low`: The low value
25 /// - `close`: The close value
26 /// - `gain_style`: The style for gain
27 /// - `loss_style`: The style for loss
28 /// - `width`: The width
29 /// - **returns** The newly created candlestick element
32 /// use chrono::prelude::*;
33 /// use plotters::prelude::*;
38 pub fn new<GS: Into<ShapeStyle>, LS: Into<ShapeStyle>>( in new()
45 loss_style: LS, in new() argument
47 ) -> Self { in new()
67 fn point_iter(self) -> &'a [(X, Y)] { in point_iter()
78 ) -> Result<(), DrawingErrorKind<DB::ErrorType>> { in draw()
87 self.width as i32 - self.width as i32 / 2, in draw()
93 points[0].0 -= l; in draw()