• Home
  • Raw
  • Download

Lines Matching refs:Plotters

1 # Plotters - A Rust drawing library focus on data plotting for both WASM and native applications  �…
19 Plotters is drawing library designed for rendering figures, plots, and charts, in pure rust. Plotte…
22 - A new Plotters Developer's Guide is working in progress. The preview version is available at [her…
23 - To try Plotters with interactive Jupyter notebook, or view [here](https://plotters-rs.github.io/p…
147 To use Plotters, you can simply add Plotters into your `Cargo.toml`
192 Plotters now supports integrate with `evcxr` and is able to interactively drawing plots in Jupyter …
193 The feature `evcxr` should be enabled when including Plotters to Jupyter Notebook.
235 Thanks to the evcxr, now we have an interactive tutorial for Plotters!
273 Plotters currently supports backend that uses the HTML5 canvas. To use the WASM support, you can si…
276 There's a small demo for Plotters + WASM under `examples/wasm-demo` directory of this repo.
282 Plotters is not limited to any specific type of figure.
283 You can create your own types of figures easily with the Plotters API.
285 But Plotters provides some builtin figure types for convenience.
293 Plotters can use different drawing back-ends, including SVG, BitMap, and even real-time rendering. …
310 Plotters uses a concept called drawing area for layout purpose.
311 Plotters support multiple integrating into a single image.
335 In Plotters, elements are build blocks of figures. All elements are able to draw on a drawing area.
404 In order to draw a chart, Plotters need a data object built on top of the drawing area called `Char…
469 Plotters now supports use features to control the backend dependencies. By default, `BitMapBackend`…
487 This is the full list of features that is defined by `Plotters` crate.
489 and then you should be able to cherry-pick what features you want to include into `Plotters` crate.
544 …As you may realized, Plotters is a drawing library rather than a traditional data plotting library…