plotters icon indicating copy to clipboard operation
plotters copied to clipboard

[BUG] stroke_width has no effect on Rectangle (SVGBackend)

Open ohmyarch opened this issue 2 years ago • 0 comments

let rect = Rectangle::new(
        [(0, 0), (400, 300)],
        style::BLACK.stroke_width(10000),
    );
canvas.draw(&rect).unwrap();
plotters = { git = "https://github.com/plotters-rs/plotters.git", default-features = false, features = [
    "svg_backend",
] }

ohmyarch avatar Jan 23 '24 06:01 ohmyarch