You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When data occurs outside the plot area, it gets plotted on the edge of the plot area. I would expect it to be clipped and not visible at all. For e.g. PointSeries this can be worked around easily by removing the out-of-bounds points ahead of time, but for e.g. LineSeries it can be more problematic. The example below shows in red what plotters currently does, and the expected result in blue. Notice that even the lines within the boundary are drawn incorrectly because they connect to the shifted x=0 point.
use plotters::prelude::*;fnmain() -> Result<(),Box<dyn std::error::Error>>{let root = BitMapBackend::new("/tmp/test.png",(640,480)).into_drawing_area();
root.fill(&WHITE)?;letmut chart = ChartBuilder::on(&root).margin(5).x_label_area_size(30).y_label_area_size(30).build_cartesian_2d(-1f32..1f32,0.2f32..1f32)?;
chart.configure_mesh().draw()?;// Normal line plot
chart
.draw_series(LineSeries::new((-2..=2).map(|x| x asf32 / 2.0).map(|x| (x, x * x)),ShapeStyle::from(RED).stroke_width(8),))?;// Manually creating the expected result
chart
.draw_series(LineSeries::new([(-1.0,4.0),(-0.5,0.25),(-f32::sqrt(0.2),0.0)],ShapeStyle::from(BLUE).stroke_width(3),))?;
chart
.draw_series(LineSeries::new([(f32::sqrt(0.2),0.0),(0.5,0.25),(1.0,4.0)],ShapeStyle::from(BLUE).stroke_width(3),))?;
root.present()?;Ok(())}
The text was updated successfully, but these errors were encountered:
When data occurs outside the plot area, it gets plotted on the edge of the plot area. I would expect it to be clipped and not visible at all. For e.g.
PointSeries
this can be worked around easily by removing the out-of-bounds points ahead of time, but for e.g.LineSeries
it can be more problematic. The example below shows in red what plotters currently does, and the expected result in blue. Notice that even the lines within the boundary are drawn incorrectly because they connect to the shifted x=0 point.The text was updated successfully, but these errors were encountered: