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: CHANGELOG.md
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,6 @@ All notable changes to this project will be documented in this file.
3
3
This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
5
## [Unreleased]
6
-
7
-
## [1.12.10] - 2016-11-23
8
6
### Updated
9
7
-`FF.create_violin` and `FF.create_scatterplotmatrix` now by default do not print subplot grid information in output
10
8
@@ -13,6 +11,27 @@ This project adheres to [Semantic Versioning](http://semver.org/).
13
11
- Please note that these configuration options are for offline plots ONLY. For configuration options when embedding online plots please see our [embed tutorial](http://help.plot.ly/embed-graphs-in-websites/#step-8-customize-the-iframe).
14
12
-`colors.py` file which contains functions for manipulating and validating colors and arrays of colors
15
13
- 'scale' param in `FF.create_trisurf` which now can set the interpolation on the colorscales
14
+
- animations now work in offline mode. By running `plotly.offline.plot()` and `plotly.offline.iplot()` with a `fig` with `frames`, the resulting plot will cycle through the figures defined in `frames` either in the browser or in an ipython notebook respectively. Here's an example
15
+
```
16
+
import IPython.display
17
+
from IPython.display import display, HTML
18
+
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
More examples can be found at https://plot.ly/python/animations/.
34
+
- Upcoming animations in online mode: use `plotly.plotly.create_animations()` and `plotly.plotly.icreate_animations()` which animate a figure with the `frames` argument.
16
35
17
36
### Fixed
18
37
- Trisurf now uses correct `Plotly Colorscales` when called
0 commit comments