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
+20-1Lines changed: 20 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,26 @@ This project adheres to [Semantic Versioning](http://semver.org/).
11
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).
12
12
-`colors.py` file which contains functions for manipulating and validating colors and arrays of colors
13
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 a `fig` with `frames`, the resulting plt will cycle through the figures defined in `frames` either in the browser or in an ipython notebook respectively.
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/.
15
34
- Upcoming animations in online mode: use `plotly.plotly.create_animations()` and `plotly.plotly.icreate_animations()` which animate a figure with the `frames` argument.
0 commit comments