Skip to content

Commit 3373d8c

Browse files
committed
Merge branch 'master' into gl3d-blend-rebase include fix for extreme opacityscale
- update volume mock with extreme opacityscale
2 parents efa3cb7 + 573bb19 commit 3373d8c

File tree

114 files changed

+25123
-10748
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+25123
-10748
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,36 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
1010
where X.Y.Z is the semver of most recent plotly.js release.
1111

1212

13+
## [1.53.0] -- 2020-03-31
14+
15+
### Added
16+
- Introduce `rangebreaks` on date axes mainly thanks to [#4614] with API revision & improvements in
17+
[#4639, #4641, #4644, #4649, #4652, #4653, #4660, #4661, #4670, #4677, #4684, #4688, #4695, #4696, #4698, #4699]
18+
- Introduce "(x|y) unified" `hovermode` [#4620, #4664, #4669, #4687]
19+
- Add "hovered data" mode to `spikesnap` [#4665]
20+
- Add "full-json" export format to `Plotly.toImage` and `Plotly.dowloadImage` [#4593]
21+
- Add `node.customdata` and `link.customdata` to `sankey` traces [#4621]
22+
- Add `opacityscale` for `surface` traces [#4480]
23+
24+
### Changed
25+
- Improve `contour` labels (add extra pad) and correct minus sign [#4540]
26+
- Improve sizing text inside `pie` and `sunburst` (add extra pad) [#4519]
27+
- Improve display of spikelines when `spikedistance` is set to -1 [#4637]
28+
- Improve compare `hovermode` to include all points at same coordinate [#4664]
29+
- Improve `histogram` hover labels (harmonize start & end values) [#4662]
30+
- Display new colors on Plotly's logo [#4691]
31+
- Update links & descriptions to Chart Studio Cloud and plotly.com website [#4694]
32+
- Update contributing guidelines & add info about trace module architecture [#4624]
33+
- Require `config.plotlyServerURL` to be set for Chart Studio export [#4690]
34+
35+
### Fixed
36+
- Fix `Plotly.downloadImage` to match transparencies in gl3d plots with the on-screen render [#4566]
37+
- Fix amount of transparency applied by `opacity` in `surface` traces [#4480, #4642]
38+
- Fix gaps in `bar` traces (regression introduced in 1.50.0) [#4634]
39+
- Fix gaps in `funnel` & `waterfall` [#4663]
40+
- Fix `template` to set axis `type`, `tickformatstops`, `tick0`, `dtick`, `tickvals` and `tickmode` [#4670, #4685]
41+
42+
1343
## [1.52.3] -- 2020-03-02
1444

1545
## Fixed

README.md

+15-25
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
<a href="https://plot.ly/javascript/"><img src="http://images.plot.ly/logo/[email protected]" height="70"></a>
1+
<a href="https://plotly.com/javascript/"><img src="https://images.plot.ly/logo/[email protected]" height="70"></a>
22

33
[![npm version](https://badge.fury.io/js/plotly.js.svg)](https://badge.fury.io/js/plotly.js)
44
[![circle ci](https://circleci.com/gh/plotly/plotly.js.png?&style=shield&circle-token=1f42a03b242bd969756fc3e53ede204af9b507c0)](https://circleci.com/gh/plotly/plotly.js)
55
[![MIT License](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://github.com/plotly/plotly.js/blob/master/LICENSE)
66

7-
Built on top of [d3.js](http://d3js.org/) and [stack.gl](http://stack.gl/),
7+
Built on top of [d3.js](https://d3js.org/) and [stack.gl](http://stack.gl/),
88
plotly.js is a high-level, declarative charting library. plotly.js ships with over 40
99
chart types, including scientific charts, 3D graphs, statistical charts, SVG maps, financial charts,
1010
and more.
1111

1212
<p align="center">
13-
<a href="https://www.plot.ly/javascript" target="_blank">
13+
<a href="https://plotly.com/javascript/" target="_blank">
1414
<img src="https://raw.githubusercontent.com/cldougl/plot_images/add_r_img/plotly_2017.png">
1515
</a></p>
1616

17-
[Contact us](https://plot.ly/products/consulting-and-oem/) for Plotly.js consulting, dashboard development, application integration, and feature additions.
17+
[Contact us](https://plotly.com/products/consulting-and-oem/) for Plotly.js consulting, dashboard development, application integration, and feature additions.
1818

1919
## Table of contents
2020

@@ -44,10 +44,10 @@ and import plotly.js as `import Plotly from 'plotly.js-dist';` or `var Plotly =
4444

4545
```html
4646
<!-- Latest compiled and minified plotly.js JavaScript -->
47-
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
47+
<script src="https://cdn.plot.ly/plotly-latest.min.js" charset="utf-8"></script>
4848

49-
<!-- OR use a specific plotly.js release (e.g. version 1.5.0) -->
50-
<script src="https://cdn.plot.ly/plotly-1.5.0.min.js"></script>
49+
<!-- OR use a specific plotly.js release (e.g. version 1.52.3) -->
50+
<script src="https://cdn.plot.ly/plotly-1.52.3.min.js" charset="utf-8"></script>
5151

5252
<!-- OR an un-minified version is also available -->
5353
<script src="https://cdn.plot.ly/plotly-latest.js" charset="utf-8"></script>
@@ -63,7 +63,7 @@ Fastly supports Plotly.js with free CDN service. Read more at https://www.fastly
6363

6464
and use the plotly.js `dist` file(s). More info [here](https://github.com/plotly/plotly.js/blob/master/dist/README.md).
6565

66-
#### Read the [Getting started page](https://plot.ly/javascript/getting-started/) for more examples.
66+
#### Read the [Getting started page](https://plotly.com/javascript/getting-started/) for more examples.
6767

6868

6969
## Modules
@@ -93,8 +93,6 @@ Then elsewhere in your code:
9393
var Plotly = require('./path/to/custom-plotly');
9494
```
9595

96-
To learn more about the plotly.js module architecture, refer to our [modularizing monolithic JS projects](https://plot.ly/javascript/modularizing-monolithic-javascript-projects/) post.
97-
9896
#### Non-ascii characters
9997

10098
Important: the plotly.js code base contains some non-ascii characters. Therefore, please make sure to set the `charset` attribute to `"utf-8"` in the script tag that imports your plotly.js bundle. For example:
@@ -113,13 +111,11 @@ Have a bug or a feature request? Please first read the [issues guidelines](https
113111

114112
## Documentation
115113

116-
Official plotly.js documentation is hosted on [plot.ly/javascript](https://plot.ly/javascript).
114+
Official plotly.js documentation is hosted on [plotly.com/javascript](https://plotly.com/javascript).
117115

118-
These pages are generated by the Plotly [documentation repo](https://github.com/plotly/documentation/tree/gh-pages) built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages.
116+
These pages are generated by the Plotly [graphing-library-docs repo](https://github.com/plotly/graphing-library-docs) built with [Jekyll](https://jekyllrb.com/) and publicly hosted on GitHub Pages.
119117
For more info about contributing to Plotly documentation, please read through [contributing guidelines](https://github.com/plotly/documentation/blob/source/Contributing.md).
120118

121-
You can also suggest new documentation examples by submitting a [Codepen](http://codepen.io/tag/plotly/) on community.plot.ly with tag [`plotly-js`](http://community.plot.ly/c/plotly-js).
122-
123119
## Contributing
124120

125121
Please read through our [contributing guidelines](https://github.com/plotly/plotly.js/blob/master/CONTRIBUTING.md). Included are directions for opening issues, using plotly.js in your project and notes on development.
@@ -128,14 +124,13 @@ Please read through our [contributing guidelines](https://github.com/plotly/plot
128124

129125
* Follow [@plotlygraphs](https://twitter.com/plotlygraphs) on Twitter for the latest Plotly news.
130126
* Follow [@plotly_js](https://twitter.com/plotly_js) on Twitter for plotly.js release updates.
131-
* Implementation help may be found on community.plot.ly (tagged [`plotly-js`](http://community.plot.ly/c/plotly-js)) or
127+
* Implementation help may be found on community.plot.com (tagged [`plotly-js`](https://community.plotly.com/c/plotly-js)) or
132128
on Stack Overflow (tagged [`plotly`](https://stackoverflow.com/questions/tagged/plotly)).
133129
* Developers should use the keyword `plotly` on packages which modify or add to the functionality of plotly.js when distributing through [npm](https://www.npmjs.com/browse/keyword/plotly).
134-
* Direct developer email support can be purchased through a [Plotly Support Plan](https://support.plot.ly/libraries/javascript).
135130

136131
## Versioning
137132

138-
This project is maintained under the [Semantic Versioning guidelines](http://semver.org/).
133+
This project is maintained under the [Semantic Versioning guidelines](https://semver.org/).
139134

140135
See the [Releases section](https://github.com/plotly/plotly.js/releases) of our GitHub project for changelogs for each release version of plotly.js.
141136

@@ -145,15 +140,10 @@ Open-source clients to the plotly.js APIs are available at these links:
145140

146141
| | GitHub repo | Getting started |
147142
|---|--------|---------|
148-
|**R / RStudio**| [ropensci/plotly](https://github.com/ropensci/plotly) | [plot.ly/r/getting-started](https://plot.ly/r/getting-started) |
149-
|**Python / Pandas / IPython notebook**| [plotly/plotly.py](https://github.com/plotly/plotly.py) | [plot.ly/python/getting-started](https://plot.ly/python/getting-started) |
150-
|**MATLAB**| [plotly/matlab-api](https://github.com/plotly/matlab-api) | [plot.ly/matlab/getting-started](https://plot.ly/matlab/getting-started) |
143+
|**R / RStudio**| [ropensci/plotly](https://github.com/ropensci/plotly) | [plotly/r/getting-started](https://plotly.com/r/getting-started) |
144+
|**Python / Pandas / IPython notebook**| [plotly/plotly.py](https://github.com/plotly/plotly.py) | [plotly/python/getting-started](https://plotly.com/python/getting-started) |
145+
|**MATLAB**| [plotly/matlab-api](https://github.com/plotly/matlab-api) | [plotly/matlab/getting-started](https://plotly.com/matlab/getting-started) |
151146
|**node.js / Tonicdev / Jupyter notebook**| [plotly/plotly-notebook-js](https://github.com/plotly/plotly-notebook-js) | |
152-
|**node.js cloud client**| [plotly/plotly-nodejs](https://github.com/plotly/plotly-nodejs) | [plot.ly/nodejs/getting-started](https://plot.ly/nodejs/getting-started) |
153-
|**Julia**| [plotly/Plotly.jl](https://github.com/plotly/Plotly.jl) | [plot.ly/julia/getting-started](https://plot.ly/julia/getting-started) |
154-
155-
plotly.js charts can also be created and saved online for free at [plot.ly/create](https://plot.ly/create).
156-
157147
## Creators
158148

159149
### Active

SECURITY.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ untrusted data being graphed by plotly.js. However, XSS or other issues may sti
99
Note that the typical use case for plotly.js is for visualizing data from trusted sources. For example if you use plotly.js to add a dashboard to your site and you control all the input data that's sent to plotly.js, you are not dependent on plotly.js for XSS protection.
1010

1111
If you require a higher degree of assurance, please consider purchasing our
12-
[Plotly On-Premise](https://plot.ly/product/enterprise/) product, or [contact the Plotly sales team](mailto:sales@plot.ly)
12+
[Plotly On-Premise](https://plotly.com/get-pricing/) product, or [contact the Plotly sales team](mailto:sales@plotly.com)
1313
for more options.
1414

1515
## Reports
1616

17-
To report a security vulnerability, please email security@plot.ly with steps to reproduce the problem. Please allow up to
17+
To report a security vulnerability, please email security@plotly.com with steps to reproduce the problem. Please allow up to
1818
24 hours for an initial response.
1919

2020
## Bounties
2121

22-
In some cases, we offer monetary compensation (bounties) for reports of security vulnerabilities. Please see the [Plotly Security Vulnerability Bounty Program](http://help.plot.ly/security/) page for more information.
22+
In some cases, we offer monetary compensation (bounties) for reports of security vulnerabilities. Please see the [Plotly Security Vulnerability Bounty Program](https://plotly.com/chart-studio-help/security/) page for more information.
2323

2424
## Release Process
2525

@@ -31,4 +31,4 @@ Since the typical plotly.js use case involves trusted data, we do not remove old
3131

3232
## Advisories
3333

34-
All plotly.js security advisories released after August 1, 2016 are available at the [Plotly Security Advisories](http://help.plot.ly/security-advisories/) page.
34+
All plotly.js security advisories released after August 1, 2016 are available at the [Plotly Security Advisories](https://plotly.com/chart-studio-help/security-advisories/) page.

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"visualization",
1414
"plotly"
1515
],
16-
"homepage": "https://plot.ly",
16+
"homepage": "https://plotly.com/",
1717
"ignore": [
1818
"**/.*",
1919
"bower_components",

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
"plotly"
1010
],
1111
"minimum-stability": "stable",
12-
"homepage": "https://plot.ly/javascript/",
12+
"homepage": "https://plotly.com/javascript/",
1313
"license": "MIT",
1414
"authors": [
1515
{
1616
"name": "Plotly, Inc.",
17-
"email": "sales@plot.ly"
17+
"email": "sales@plotly.com"
1818
}
1919
]
2020
}

dist/README.md

+26-26
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ object. This property must be set before the plotly.js script tag, for example:
5151
Plotly.js defaults to US English (en-US) and includes British English (en) in the standard bundle.
5252
Many other localizations are available - here is an example using Swiss-German (de-CH),
5353
see the contents of this directory for the full list.
54-
They are also available on our CDN as https://cdn.plot.ly/plotly-locale-de-ch-latest.js OR https://cdn.plot.ly/plotly-locale-de-ch-1.52.3.js
54+
They are also available on our CDN as https://cdn.plot.ly/plotly-locale-de-ch-latest.js OR https://cdn.plot.ly/plotly-locale-de-ch-1.53.0.js
5555
Note that the file names are all lowercase, even though the region is uppercase when you apply a locale.
5656

5757
*After* the plotly.js script tag, add:
@@ -74,21 +74,21 @@ The main plotly.js bundle includes all the official (non-beta) trace modules.
7474

7575
It be can imported as minified javascript
7676
- using dist file `dist/plotly.min.js`
77-
- using CDN URL https://cdn.plot.ly/plotly-latest.min.js OR https://cdn.plot.ly/plotly-1.52.3.min.js
77+
- using CDN URL https://cdn.plot.ly/plotly-latest.min.js OR https://cdn.plot.ly/plotly-1.53.0.min.js
7878

7979
or as raw javascript:
8080
- using the `plotly.js-dist` npm package (starting in `v1.39.0`)
8181
- using dist file `dist/plotly.js`
82-
- using CDN URL https://cdn.plot.ly/plotly-latest.js OR https://cdn.plot.ly/plotly-1.52.3.js
82+
- using CDN URL https://cdn.plot.ly/plotly-latest.js OR https://cdn.plot.ly/plotly-1.53.0.js
8383
- using CommonJS with `require('plotly.js')`
8484

85-
If you would like to have access to the attribute meta information (including attribute descriptions as on the [schema reference page](https://plot.ly/javascript/reference/)), use dist file `dist/plotly-with-meta.js`
85+
If you would like to have access to the attribute meta information (including attribute descriptions as on the [schema reference page](https://plotly.com/javascript/reference/)), use dist file `dist/plotly-with-meta.js`
8686

8787
The main plotly.js bundle weights in at:
8888

8989
| plotly.js | plotly.min.js | plotly.min.js + gzip | plotly-with-meta.js |
9090
|-----------|---------------|----------------------|---------------------|
91-
| 6.9 MB | 3.2 MB | 957.2 kB | 7.2 MB |
91+
| 6.9 MB | 3.2 MB | 961.9 kB | 7.2 MB |
9292

9393
## Partial bundles
9494

@@ -114,16 +114,16 @@ The `basic` partial bundle contains trace modules `scatter`, `bar` and `pie`.
114114

115115
| Raw size | Minified size | Minified + gzip size |
116116
|------|-----------------|------------------------|
117-
| 2.4 MB | 853.6 kB | 280.4 kB |
117+
| 2.4 MB | 865.6 kB | 284.6 kB |
118118

119119
#### CDN links
120120

121121
| Flavor | URL |
122122
| ------ | --- |
123123
| Latest | https://cdn.plot.ly/plotly-basic-latest.js |
124124
| Latest minified | https://cdn.plot.ly/plotly-basic-latest.min.js |
125-
| Tagged | https://cdn.plot.ly/plotly-basic-1.52.3.js |
126-
| Tagged minified | https://cdn.plot.ly/plotly-basic-1.52.3.min.js |
125+
| Tagged | https://cdn.plot.ly/plotly-basic-1.53.0.js |
126+
| Tagged minified | https://cdn.plot.ly/plotly-basic-1.53.0.min.js |
127127

128128
#### npm package (starting in `v1.39.0`)
129129

@@ -167,16 +167,16 @@ The `cartesian` partial bundle contains trace modules `scatter`, `bar`, `box`, `
167167

168168
| Raw size | Minified size | Minified + gzip size |
169169
|------|-----------------|------------------------|
170-
| 2.7 MB | 983.5 kB | 321.4 kB |
170+
| 2.8 MB | 995.9 kB | 325.8 kB |
171171

172172
#### CDN links
173173

174174
| Flavor | URL |
175175
| ------ | --- |
176176
| Latest | https://cdn.plot.ly/plotly-cartesian-latest.js |
177177
| Latest minified | https://cdn.plot.ly/plotly-cartesian-latest.min.js |
178-
| Tagged | https://cdn.plot.ly/plotly-cartesian-1.52.3.js |
179-
| Tagged minified | https://cdn.plot.ly/plotly-cartesian-1.52.3.min.js |
178+
| Tagged | https://cdn.plot.ly/plotly-cartesian-1.53.0.js |
179+
| Tagged minified | https://cdn.plot.ly/plotly-cartesian-1.53.0.min.js |
180180

181181
#### npm package (starting in `v1.39.0`)
182182

@@ -220,16 +220,16 @@ The `geo` partial bundle contains trace modules `scatter`, `scattergeo` and `cho
220220

221221
| Raw size | Minified size | Minified + gzip size |
222222
|------|-----------------|------------------------|
223-
| 2.4 MB | 880.7 kB | 289.9 kB |
223+
| 2.5 MB | 892.4 kB | 294.1 kB |
224224

225225
#### CDN links
226226

227227
| Flavor | URL |
228228
| ------ | --- |
229229
| Latest | https://cdn.plot.ly/plotly-geo-latest.js |
230230
| Latest minified | https://cdn.plot.ly/plotly-geo-latest.min.js |
231-
| Tagged | https://cdn.plot.ly/plotly-geo-1.52.3.js |
232-
| Tagged minified | https://cdn.plot.ly/plotly-geo-1.52.3.min.js |
231+
| Tagged | https://cdn.plot.ly/plotly-geo-1.53.0.js |
232+
| Tagged minified | https://cdn.plot.ly/plotly-geo-1.53.0.min.js |
233233

234234
#### npm package (starting in `v1.39.0`)
235235

@@ -273,16 +273,16 @@ The `gl3d` partial bundle contains trace modules `scatter`, `scatter3d`, `surfac
273273

274274
| Raw size | Minified size | Minified + gzip size |
275275
|------|-----------------|------------------------|
276-
| 3.5 MB | 1.4 MB | 439.2 kB |
276+
| 3.5 MB | 1.4 MB | 443.6 kB |
277277

278278
#### CDN links
279279

280280
| Flavor | URL |
281281
| ------ | --- |
282282
| Latest | https://cdn.plot.ly/plotly-gl3d-latest.js |
283283
| Latest minified | https://cdn.plot.ly/plotly-gl3d-latest.min.js |
284-
| Tagged | https://cdn.plot.ly/plotly-gl3d-1.52.3.js |
285-
| Tagged minified | https://cdn.plot.ly/plotly-gl3d-1.52.3.min.js |
284+
| Tagged | https://cdn.plot.ly/plotly-gl3d-1.53.0.js |
285+
| Tagged minified | https://cdn.plot.ly/plotly-gl3d-1.53.0.min.js |
286286

287287
#### npm package (starting in `v1.39.0`)
288288

@@ -326,16 +326,16 @@ The `gl2d` partial bundle contains trace modules `scatter`, `scattergl`, `splom`
326326

327327
| Raw size | Minified size | Minified + gzip size |
328328
|------|-----------------|------------------------|
329-
| 3.5 MB | 1.4 MB | 458.2 kB |
329+
| 3.5 MB | 1.4 MB | 462.4 kB |
330330

331331
#### CDN links
332332

333333
| Flavor | URL |
334334
| ------ | --- |
335335
| Latest | https://cdn.plot.ly/plotly-gl2d-latest.js |
336336
| Latest minified | https://cdn.plot.ly/plotly-gl2d-latest.min.js |
337-
| Tagged | https://cdn.plot.ly/plotly-gl2d-1.52.3.js |
338-
| Tagged minified | https://cdn.plot.ly/plotly-gl2d-1.52.3.min.js |
337+
| Tagged | https://cdn.plot.ly/plotly-gl2d-1.53.0.js |
338+
| Tagged minified | https://cdn.plot.ly/plotly-gl2d-1.53.0.min.js |
339339

340340
#### npm package (starting in `v1.39.0`)
341341

@@ -379,16 +379,16 @@ The `mapbox` partial bundle contains trace modules `scatter`, `scattermapbox`, `
379379

380380
| Raw size | Minified size | Minified + gzip size |
381381
|------|-----------------|------------------------|
382-
| 3.1 MB | 1.5 MB | 461.8 kB |
382+
| 3.2 MB | 1.5 MB | 466 kB |
383383

384384
#### CDN links
385385

386386
| Flavor | URL |
387387
| ------ | --- |
388388
| Latest | https://cdn.plot.ly/plotly-mapbox-latest.js |
389389
| Latest minified | https://cdn.plot.ly/plotly-mapbox-latest.min.js |
390-
| Tagged | https://cdn.plot.ly/plotly-mapbox-1.52.3.js |
391-
| Tagged minified | https://cdn.plot.ly/plotly-mapbox-1.52.3.min.js |
390+
| Tagged | https://cdn.plot.ly/plotly-mapbox-1.53.0.js |
391+
| Tagged minified | https://cdn.plot.ly/plotly-mapbox-1.53.0.min.js |
392392

393393
#### npm package (starting in `v1.39.0`)
394394

@@ -432,16 +432,16 @@ The `finance` partial bundle contains trace modules `scatter`, `bar`, `histogram
432432

433433
| Raw size | Minified size | Minified + gzip size |
434434
|------|-----------------|------------------------|
435-
| 2.6 MB | 940.7 kB | 305.4 kB |
435+
| 2.6 MB | 953.3 kB | 309.9 kB |
436436

437437
#### CDN links
438438

439439
| Flavor | URL |
440440
| ------ | --- |
441441
| Latest | https://cdn.plot.ly/plotly-finance-latest.js |
442442
| Latest minified | https://cdn.plot.ly/plotly-finance-latest.min.js |
443-
| Tagged | https://cdn.plot.ly/plotly-finance-1.52.3.js |
444-
| Tagged minified | https://cdn.plot.ly/plotly-finance-1.52.3.min.js |
443+
| Tagged | https://cdn.plot.ly/plotly-finance-1.53.0.js |
444+
| Tagged minified | https://cdn.plot.ly/plotly-finance-1.53.0.min.js |
445445

446446
#### npm package (starting in `v1.39.0`)
447447

0 commit comments

Comments
 (0)