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
Copy file name to clipboardExpand all lines: README.md
+3-4Lines changed: 3 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,6 @@ A plotting library for Rust powered by [Plotly.js](https://plot.ly/javascript/).
53
53
54
54
Documentation and numerous interactive examples are available in the [Plotly.rs Book](https://plotly.github.io/plotly.rs/content/getting_started.html), the [examples/](https://github.com/plotly/plotly.rs/tree/main/examples) directory and [docs.rs](https://docs.rs/crate/plotly).
55
55
56
-
57
56
For changes since the last version, please consult the [changelog](https://github.com/plotly/plotly.rs/tree/main/CHANGELOG.md).
58
57
59
58
# Basic Usage
@@ -62,7 +61,7 @@ Add this to your `Cargo.toml`:
62
61
63
62
```toml
64
63
[dependencies]
65
-
plotly = "0.12"
64
+
plotly = "0.13"
66
65
```
67
66
68
67
## Exporting a single Interactive Plot
@@ -114,7 +113,7 @@ The recommended way to export static images is using the `plotly_static` backend
114
113
115
114
```toml
116
115
[dependencies]
117
-
plotly = { version = "0.12", features = ["static_export_default"] }
116
+
plotly = { version = "0.13", features = ["static_export_default"] }
118
117
```
119
118
120
119
This supports PNG, JPEG, WEBP, SVG, and PDF formats:
@@ -141,7 +140,7 @@ Enable the `kaleido` feature and opt in for automatic downloading of the `kaleid
141
140
# Cargo.toml
142
141
143
142
[dependencies]
144
-
plotly = { version = "0.12", features = ["kaleido", "kaleido_download"] }
143
+
plotly = { version = "0.13", features = ["kaleido", "kaleido_download"] }
145
144
```
146
145
147
146
Alternatively, enable only the `kaleido` feature and manually install Kaleido.
Copy file name to clipboardExpand all lines: docs/book/src/getting_started.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,7 @@ To start using [plotly.rs](https://github.com/plotly/plotly.rs) in your project
22
22
23
23
```toml
24
24
[dependencies]
25
-
plotly = "0.12"
25
+
plotly = "0.13"
26
26
```
27
27
28
28
[Plotly.rs](https://github.com/plotly/plotly.rs) is ultimately a thin wrapper around the `plotly.js` library. The main job of this library is to provide `structs` and `enums` which get serialized to `json` and passed to the `plotly.js` library to actually do the heavy lifting. As such, if you are familiar with `plotly.js` or its derivatives (e.g. the equivalent Python library), then you should find [`plotly.rs`](https://github.com/plotly/plotly.rs) intuitive to use.
0 commit comments