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
+28-6Lines changed: 28 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -4,15 +4,37 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
5
5
## [Unreleased]
6
6
7
-
## [1.12.10] - 2016-11-23
7
+
## [1.12.10] - 2016-11-28
8
8
### Updated
9
9
-`FF.create_violin` and `FF.create_scatterplotmatrix` now by default do not print subplot grid information in output
10
+
- Removed alert that occured when downloading plot images offline. Please note: for higher resolution images and more export options, consider making requests to our image servers. See: `help(py.image)` for more details.
10
11
11
12
### Added
12
-
- Plot configuration options for offline plots. See the list of [configuration options](https://github.com/Rikorose/plotly.py/blob/master/plotly/offline/offline.py#L189) and [examples](https://plot.ly/javascript/configuration-options/) for more information.
13
+
- Plot configuration options for offline plots. See the list of [configuration options](https://github.com/Rikorose/plotly.py/blob/master/plotly/offline/offline.py#L189) and [examples](https://plot.ly/javascript/configuration-options/) for more information.
13
14
- 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
15
-`colors.py` file which contains functions for manipulating and validating colors and arrays of colors
15
16
- 'scale' param in `FF.create_trisurf` which now can set the interpolation on the colorscales
17
+
- 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
18
+
```
19
+
import IPython.display
20
+
from IPython.display import display, HTML
21
+
from plotly.offline import download_plotlyjs, init_notebook_mode, plot, iplot
More examples can be found at https://plot.ly/python/animations/.
37
+
- Upcoming animations in online mode: use `plotly.plotly.create_animations()` and `plotly.plotly.icreate_animations()` which animate a figure with the `frames` argument.
16
38
17
39
### Fixed
18
40
- Trisurf now uses correct `Plotly Colorscales` when called
# Make a graph that with data that is referenced from that grid
@@ -40,17 +62,17 @@ Then, whenever you update the data in `'my-grid'`, the associated plot will upda
40
62
- the colorbar in `.create_trisurf` now displays properly in `offline mode`.
41
63
42
64
### Updated
43
-
- the colorbar in `.create_trisurf` now displays the appropriate max and min values on the ends of the bar which corresponding to the coloring metric of the figure
65
+
- the colorbar in `.create_trisurf` now displays the appropriate max and min values on the ends of the bar which corresponding to the coloring metric of the figure
44
66
-`edges_color` is now a param in `.create_trisurf` which only takes `rgb` values at the moment
45
67
46
68
## [1.12.8] - 2016-08-18
47
69
### Fixed
48
-
- Fixed color bug with trisurf plots where certain triangles were colored strangely. The coordinates of `rgb(...)` are now rounded to their nearest integer (using Python3 method of rounding), then placed in the color string to fix the issue.
70
+
- Fixed color bug with trisurf plots where certain triangles were colored strangely. The coordinates of `rgb(...)` are now rounded to their nearest integer (using Python3 method of rounding), then placed in the color string to fix the issue.
49
71
50
72
## [1.12.7] - 2016-08-17
51
73
### Fixed
52
74
- Edited `plotly.min.js` due to issue using `iplot` to plot offline in Jupyter Notebooks
53
-
- Please note that `plotly.min.js` may be cached in your Jupyter Notebook. Therefore, if you continue to experience this issue after upgrading the Plotly package please open a new notebook or clear the cache to ensure the correct `plotly.min.js` is referenced.
75
+
- Please note that `plotly.min.js` may be cached in your Jupyter Notebook. Therefore, if you continue to experience this issue after upgrading the Plotly package please open a new notebook or clear the cache to ensure the correct `plotly.min.js` is referenced.
0 commit comments