You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Plotters is drawing library designed for rendering figures, plots, and charts, in pure rust. Plotters supports various types of back-ends,
20
-
including bitmap, vector graph, piston window, GTK/Cairo and WebAssembly.
19
+
Plotters is drawing library designed for rendering figures, plots, and charts, in pure rust. Plotters supports various types of back-ends,
20
+
including bitmap, vector graph, piston window, GTK/Cairo and WebAssembly.
21
21
22
22
- A new Plotters Developer's Guide is working in progress. The preview version is available at [here](https://plotters-rs.github.io/book).
23
23
- To try Plotters with interactive Jupyter notebook, or view [here](https://plotters-rs.github.io/plotters-doc-data/evcxr-jupyter-integration.html) for the static HTML version.
@@ -147,7 +147,7 @@ And the following code draws a quadratic function. `src/main.rs`,
// After this point, we should be able to draw construct a chart context
@@ -475,7 +475,7 @@ This behavior can also be turned off by setting `default_features = false`.
475
475
476
476
### List of Features
477
477
478
-
This is the full list of features that is defined by `Plotters` crate. Use `default_features = false` to disable those default enabled features, and then you should be able to cherry-pick what features you want to include into `Plotters` crate.
478
+
This is the full list of features that is defined by `Plotters` crate. Use `default_features = false` to disable those default enabled features, and then you should be able to cherry-pick what features you want to include into `Plotters` crate.
479
479
480
480
| Name | Description | Additional Dependency |Default?|
481
481
|---------|--------------|--------|------------|
@@ -495,12 +495,12 @@ This is the full list of features that is defined by `Plotters` crate. Use `defa
495
495
496
496
The WASM example requires using `wasm32` target to build. Using `cargo build` is likely to use the default target
497
497
which in most of the case is any of the x86 target. Thus you need add `--target=wasm32-unknown-unknown` in the cargo
498
-
parameter list to build it.
498
+
parameter list to build it.
499
499
500
500
* How to draw text/circle/point/rectangle/... on the top of chart ?
501
-
502
-
As you may realized, Plotters is a drawing library rather than a traditional data plotting library,
501
+
502
+
As you may realized, Plotters is a drawing library rather than a traditional data plotting library,
503
503
you have the freedom to draw anything you want on the drawing area.
504
-
Use `DrawingArea::draw` to draw any element on the drawing area.
504
+
Use `DrawingArea::draw` to draw any element on the drawing area.
0 commit comments