Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c195e78

Browse files
committed
merged master into branch
2 parents 4acc146 + 4fbe779 commit c195e78

File tree

5 files changed

+2314
-795
lines changed

5 files changed

+2314
-795
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
6+
7+
## [1.12.10] - 2016-11-23
68
### Updated
79
- `FF.create_violin` and `FF.create_scatterplotmatrix` now by default do not print subplot grid information in output
810

@@ -14,6 +16,24 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1416

1517
### Fixed
1618
- Trisurf now uses correct `Plotly Colorscales` when called
19+
- Fixed a bug in the format of unique-identifiers in columns of grids that are uploaded to plotly via `plotly.plotly.upload`. See https://github.com/plotly/plotly.py/pull/599 for details. In particular, creating plots that are based off of plotly grids is no longer broken. Here is an example:
20+
21+
```
22+
import plotly.plotly as py
23+
from plotly.grid_objs import Grid, Column
24+
25+
c1 = Column([6, 6, 6, 5], 'column 1')
26+
c2 = Column(['a', 'b', 'c', 'd'], 'column 2')
27+
g = Grid([c1, c2])
28+
29+
# Upload the grid
30+
py.grid_ops.upload(g, 'my-grid', auto_open=False)
31+
32+
# Make a graph that with data that is referenced from that grid
33+
trace = Scatter(xsrc=g[0], ysrc=g[1])
34+
url = py.plot([trace], filename='my-plot')
35+
```
36+
Then, whenever you update the data in `'my-grid'`, the associated plot will update too. See https://plot.ly/python/data-api for more details on usage and examples.
1737

1838
## [1.12.9] - 2016-08-22
1939
### Fixed

0 commit comments

Comments
 (0)