plotters icon indicating copy to clipboard operation
plotters copied to clipboard

A rust drawing library for high quality data plotting for both WASM and native, statically and realtimely 🦀 📈🚀

Results 197 plotters issues
Sort by recently updated
recently updated
newest added

Hi, When plotting both the left and right y-axis, the labels on the left y-axis was not aligned: ``` evcxr_figure((640, 480), |root| { let x_axis = (-3.4f32..3.4).step(0.01); root.fill(&WHITE)?; let mut...

bug

**Describe the bug** Describe what is expected, what you actually get. It would be nice to have screenshot or result image uploaded When using draw_series and LineSeries with BitMapBackend on...

bug

Context: https://github.com/servo/font-kit/issues/233, https://github.com/servo/pathfinder/pull/548 Once font-kit updates it's deps `plotters` will need to do so as well

bug

plotters already nicely integrates with slint, as visible in this example: https://slint-ui.com/releases/1.0.0/demos/plotter/ But one big selling-point of slint is to able to handle even embedded devices with very restricted memory...

feature request

When using plotters the plots get generated extemely fast when not using multiple plots. But when I add a single split into the root, generating a single plot will take...

bug

**Describe the bug** Under a very specific set of parameters, the call to `draw_series` hangs while still consuming a decent chunk of CPU (14% with a Ryzen 9 6900HS). The...

bug

### What is the feature ? This is a pure rust alternative of LaTeX ### (Optional) Why this feature is useful and how people would use the feature ? You...

feature request

``` 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", ] } ```

bug

### What is the feature ? [PointCollection](https://docs.rs/plotters/latest/plotters/element/trait.PointCollection.html) uses an explicit workaround for GATs that have been around since 1.65.0 It seems this crate is abandoned. When I'm sober, I'll try...

feature request

**To Reproduce** - needs to enable in Cargo.toml feature`ab_glyph` ``` use crate::pdf_creator::items::data::FONT_ROBOTO_REGULAR; use plotters::style::register_font; use plotters_backend::FontStyle; pub fn register_pdf_fonts() { register_font("roboto-regular", FontStyle::Normal, FONT_ROBOTO_REGULAR).unwrap(); } ``` produce error: ``` error[E0277]: `style::font::ab_glyph::InvalidFont`...

bug