implot-rs
implot-rs copied to clipboard
Rust bindings to https://github.com/epezent/implot
Hi, I tried running the examples but cannot compile. rustc 1.66.0 (69f9c33d7 2022-12-12) I cloned your repo, cd in implot-examples, and at first clance, `line_plot` is not present. `error: no...
If I have a graph with some data, by default the X and Y axes show 0-1 ranges. It would be useful to have an easy way to scale the...
Allowing user control of the label format string is unsound, as implot passes it directly into `sprintf` with a 32 char buffer. (See https://github.com/epezent/implot/issues/310) Plot heatmap uses the provided format...
F:\rs\implot-rs\implot-examples\implot-glium-demo>cargo run Updating `ustc` index Compiling winapi v0.3.9 Compiling winit v0.25.0 Compiling imgui-sys v0.8.0 Compiling implot-sys v0.6.0 (F:\rs\implot-rs\implot-sys) error: failed to run custom build command for `implot-sys v0.6.0 (F:\rs\implot-rs\implot-sys)` Caused...
When `cargo build` in a clean checkout, I get: ```console % cargo build Compiling implot-sys v0.4.0 (/Users/maoe/src/github.com/4bb4/implot-rs/implot-sys) The following warnings were emitted during compilation: warning: In file included from third-party/cimplot/implot/implot.cpp:69:...
Thanks for this crate! I'd be really interested in the candlestick chart type. I'd also be interested to work on that myself, if nobody else is. Btw, can multiple charts...
maybe by using a backend like https://github.com/imgui-rs/imgui-rs/pull/482 this crate would be nice for creating images as well (also ref https://github.com/38/plotters) Otherwise a simple wgpu example which saves the buffer using...
There is some new functionality like labels for second and third Y axis in BeginPlot.
I may be missing something in the API, but currently to set the ranges of the X and Y axes requires quite a long chunk of code ```rust Plot::new() .x_limits(...