Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 21556aa

Browse files
committed
v0.17.0
1 parent 65d3292 commit 21556aa

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed

CHANGELOG.md

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

5+
## [0.17.0] - 2017-01-11
6+
### Added
7+
- The `dcc.Graph` component now includes `pointNumbers` inside `selectedData`
8+
and `hoverData` if the chart type is a `histogram`, `histogram2d`, or `histogram2dcontour`.
9+
10+
## [0.16.0] - 2017-01-11
11+
### Added
12+
- Upgraded Plotly.js, the underlying library behind the
13+
`dash_core_components.Graph` component, to [version 1.32.0](https://github.com/plotly/plotly.js/releases/tag/v1.32.0).
14+
This was a huge release! Here are some of the new features that
15+
are available. See https://github.com/plotly/plotly.js/releases/tag/v1.32.0 for the official notes.
16+
- Add localization machinery [https://github.com/plotly/plotly.js/pull/2195, https://github.com/plotly/plotly.js/pull/2207, https://github.com/plotly/plotly.js/pull/2210, https://github.com/plotly/plotly.js/pull/2232],
17+
including an official German translation (locale `de`) [https://github.com/plotly/plotly.js/pull/2217]
18+
- Add `violin` trace type [https://github.com/plotly/plotly.js/pull/2116]
19+
- Add `selected` and `unselected` attribute containers to customize selection states [https://github.com/plotly/plotly.js/pull/2135]
20+
- Add support for multi-selections [https://github.com/plotly/plotly.js/pull/2140]
21+
- Add layout `colorway` to custom the trace-to-trace color sequence [https://github.com/plotly/plotly.js/pull/2156]
22+
- Add `tickformatstops` to set tick format per cartesian axis range [https://github.com/plotly/plotly.js/pull/1965]
23+
- Add hover labels and selections to box points [https://github.com/plotly/plotly.js/pull/2094]
24+
- Histogram events & bin hover label improvements [https://github.com/plotly/plotly.js/pull/2113]
25+
- Add support for aggregation in `pie` traces [https://github.com/plotly/plotly.js/pull/2117]
26+
- Add annotations `startarrowhead`, `arrowside`, `startarrowsize` and `startstandoff` attributes [https://github.com/plotly/plotly.js/pull/2164]
27+
- Add `zhoverformat` to format `z` values in `heatmap`, `contour` and 2d histogram traces [https://github.com/plotly/plotly.js/pull/2106, https://github.com/plotly/plotly.js/pull/2127]
28+
- Add `marker.opacity` to bar traces [https://github.com/plotly/plotly.js/pull/2163]
29+
- Add `Cividis` colorscale [https://github.com/plotly/plotly.js/pull/2178]
30+
- Implement transform inverse mapping [https://github.com/plotly/plotly.js/pull/2126, https://github.com/plotly/plotly.js/pull/2162]
31+
- Selections are now persistent [https://github.com/plotly/plotly.js/pull/2135]
32+
- Rename _Save and edit plot in cloud_ mode bar button _Edit in Chart Studio_ [https://github.com/plotly/plotly.js/pull/2183]
33+
34+
### Fixed
35+
Here the bug fixes in the `Graph` component brought to you by the plotly.js release.
36+
See https://github.com/plotly/plotly.js/releases/tag/v1.32.0 for the official notes.
37+
38+
- Fix right-click handling [https://github.com/plotly/plotly.js/pull/2241]
39+
- Miscellaneous fixes for `table` traces [https://github.com/plotly/plotly.js/pull/2107, https://github.com/plotly/plotly.js/pull/2182]
40+
- Fix horizontal legend items alignment edge case [https://github.com/plotly/plotly.js/pull/2149]
41+
- Fix shape and updatemenu layering [https://github.com/plotly/plotly.js/pull/2121]
42+
- Fix bar with error bar with set `ids` edge case [https://github.com/plotly/plotly.js/pull/2169]
43+
- Fix `cliponaxis: false` for non linear cartesian axes [https://github.com/plotly/plotly.js/pull/2177]
44+
- Fix heatmap non-uniform brick gaps problem [https://github.com/plotly/plotly.js/pull/2213]
45+
- Fix choropleth selection when `visible: false` trace are present on graph [https://github.com/plotly/plotly.js/pull/2099, https://github.com/plotly/plotly.js/pull/2109]
46+
- Fix yet another contour drawing bug [https://github.com/plotly/plotly.js/pull/2091]
47+
- Clean up pie event data [https://github.com/plotly/plotly.js/pull/2117]
48+
- Fix scatter + bar hover edge cases [https://github.com/plotly/plotly.js/pull/2218]
49+
- Allow hover labels to extend to edges of graph area [https://github.com/plotly/plotly.js/pull/2215]
50+
- Harden location-to-feature against non-string country names for geo subplot [https://github.com/plotly/plotly.js/pull/2122]
51+
- Remove obsolete `smith` attribute from plot schema [https://github.com/plotly/plotly.js/pull/2093]
52+
- Fix colorbar class name [https://github.com/plotly/plotly.js/pull/2139]
53+
54+
55+
556
## [0.15.5] - 2017-01-08
657
### Fixed
758
- The `dash_core_components.Location` and `dash_core_components.Link` properties

dash_core_components/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.16.0'
1+
__version__ = '0.17.0'

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-core-components",
3-
"version": "0.16.0",
3+
"version": "0.17.0",
44
"description": "Core component suite for Dash",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)