Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Data outside the plot area gets plotted at the edge instead of clipped #429

Open
jbncode opened this issue Oct 22, 2022 · 4 comments
Labels
bug Something isn't working

Comments

@jbncode
Copy link

jbncode commented Oct 22, 2022

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::*;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let root = BitMapBackend::new("/tmp/test.png", (640, 480)).into_drawing_area();
    root.fill(&WHITE)?;
    let mut 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 as f32 / 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(())
}

@jbncode jbncode added the bug Something isn't working label Oct 22, 2022
@SpecificProtagonist
Copy link

The clipping happens in CoordMapper (as well as a few lines later for 3d), but I'm not sure how to fix it.

@tgross35
Copy link

Adding a note, NaN gets displayed as in infinite value and gets plotted at the edge:

Image

NaNs should probably not be displayed at all. For contrast, Plots.jl output:

Image

@bluenote10
Copy link

For the record, I think this issue is tracked multiple times (or at least highly related issues):

@dactest
Copy link

dactest commented Mar 17, 2025

Looks like very old bug but no one trying to fix it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

5 participants