Skip to content

Commit b002db2

Browse files
committed
Upgrade plotlyjs (plotly#46) - v0.10.0
1 parent 96a60c2 commit b002db2

File tree

6 files changed

+113
-81
lines changed

6 files changed

+113
-81
lines changed

packages/dash-core-components/CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,37 @@
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.10.0] - 2017-08-03
6+
### Added
7+
- Upgrade [plotly.js](https://github.com/plotly/plotly.js) (the library behind the `Graph` component) from 1.27.0 to 1.29.3. This includes TONS of fixes and improvements, see https://github.com/plotly/plotly.js/releases for more details. Notable improvements include:
8+
- Add touch interactions to cartesian, gl2d and ternary subplots including for
9+
select and lasso drag modes
10+
- Add support for contour line labels in contour and contourcarpet traces
11+
- Add support for select and lasso drag modes on scattermapbox traces
12+
- Add reset view and toggle hover mode bar buttons to mapbox subplots
13+
- Add support for array marker.opacity settings in scattermapbox traces
14+
- Add namelength layout and trace attribute to control the trace name's
15+
visible length in hover labels
16+
- Add cliponaxis attribute to scatter and scatterternary traces to allow
17+
markers and text nodes to be displayed above their subplot's axes
18+
- Add axis layer attribute with 'above traces' and 'below traces' values
19+
20+
And fixes include:
21+
- Fix axis line width, length, and positioning for coupled subplots
22+
- Fix alignment of cartesian tick labels
23+
- Fix rendering and updates of overlaying axis lines
24+
- Fix hover for 2D traces with custom colorbar tickvals
25+
- Fix hover and event data for heatmapgl and contourgl traces
26+
- Fix event data for pie and sankey traces
27+
- Fix drag mode 'pan' in IE and Edge
28+
- Fix bar, error bar and box point scaling on scroll zoom
29+
- Fix shading issue in surface trace in iOS
30+
- Fix lasso and select drag modes for `scatterternary` traces
31+
- Fix cases of intersecting contour lines on log axes
32+
- Fix animation of annotations, shapes and images
33+
- Fix histogram bin computation when more than 5000 bins are needed
34+
- Fix tick label rendering when more than 1000 labels are present
35+
536
## [0.9.0] - 2017-07-28
637
### Added
738
- A `config` property of the `Graph` component that exposes the [plotly.js config properties](https://plot.ly/javascript/configuration-options/). Here's an example that hides 2 buttons and makes the elements in the graph "editable":

packages/dash-core-components/MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ include dash_core_components/bundle.js.map
33
include dash_core_components/metadata.json
44
include dash_core_components/[email protected]
55
include dash_core_components/[email protected]
6-
include dash_core_components/plotly-1.27.1.min.js
6+
include dash_core_components/plotly-1.29.3.min.js
77
include README.md
88
include LICENSE.md

packages/dash-core-components/dash_core_components/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
_js_dist = [
1616
{
17-
'external_url': 'https://cdn.plot.ly/plotly-1.27.1.min.js',
18-
'relative_package_path': 'plotly-1.27.1.min.js',
17+
'external_url': 'https://cdn.plot.ly/plotly-1.29.3.min.js',
18+
'relative_package_path': 'plotly-1.29.3.min.js',
1919
'namespace': 'dash_core_components'
2020
},
2121
{

packages/dash-core-components/dash_core_components/plotly-1.27.1.min.js

-77
This file was deleted.

packages/dash-core-components/dash_core_components/plotly-1.29.3.min.js

+78
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.9.0'
1+
__version__ = '0.10.0'

0 commit comments

Comments
 (0)