Skip to content

upgrade Plotly.js to 2.13.2 #3821

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## UNRELEASED

### Updated
- Updated Plotly.js to from version 2.12.1 to version 2.13.2. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2132----2022-07-21) for more information. Notable changes include:
- Add `selections`, `newselection` and `activeselection` layout attributes to have persistent and editable selections over cartesian subplots
- Add `unselected.line.color` and `unselected.line.opacity` options to `parcoords` trace
- Display Plotly's new logo in the modebar

## [5.9.0] - 2022-06-23

Expand Down
261 changes: 130 additions & 131 deletions packages/javascript/jupyterlab-plotly/package-lock.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/javascript/jupyterlab-plotly/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"@lumino/messaging": "^1.2.3",
"@lumino/widgets": "^1.8.1",
"lodash": "^4.17.4",
"plotly.js": "^2.12.1"
"plotly.js": "^2.13.2"
},
"jupyterlab": {
"extension": "lib/jupyterlab-plugin",
Expand Down
252 changes: 247 additions & 5 deletions packages/python/plotly/codegen/resources/plot-schema.json

Large diffs are not rendered by default.

62 changes: 31 additions & 31 deletions packages/python/plotly/plotly/graph_objs/_box.py
Original file line number Diff line number Diff line change
Expand Up @@ -1244,15 +1244,15 @@ def quartilemethod(self):
Sets the method used to compute the sample's Q1 and Q3
quartiles. The "linear" method uses the 25th percentile for Q1
and 75th percentile for Q3 as computed using method #10 (listed
on http://www.amstat.org/publications/jse/v14n3/langford.html).
The "exclusive" method uses the median to divide the ordered
dataset into two halves if the sample is odd, it does not
include the median in either half - Q1 is then the median of
the lower half and Q3 the median of the upper half. The
"inclusive" method also uses the median to divide the ordered
dataset into two halves but if the sample is odd, it includes
the median in both halves - Q1 is then the median of the lower
half and Q3 the median of the upper half.
on http://jse.amstat.org/v14n3/langford.html). The "exclusive"
method uses the median to divide the ordered dataset into two
halves if the sample is odd, it does not include the median in
either half - Q1 is then the median of the lower half and Q3
the median of the upper half. The "inclusive" method also uses
the median to divide the ordered dataset into two halves but if
the sample is odd, it includes the median in both halves - Q1
is then the median of the lower half and Q3 the median of the
upper half.

The 'quartilemethod' property is an enumeration that may be specified as:
- One of the following enumeration values:
Expand Down Expand Up @@ -2312,17 +2312,17 @@ def _prop_descriptions(self):
Sets the method used to compute the sample's Q1 and Q3
quartiles. The "linear" method uses the 25th percentile
for Q1 and 75th percentile for Q3 as computed using
method #10 (listed on http://www.amstat.org/publication
s/jse/v14n3/langford.html). The "exclusive" method uses
the median to divide the ordered dataset into two
halves if the sample is odd, it does not include the
median in either half - Q1 is then the median of the
lower half and Q3 the median of the upper half. The
"inclusive" method also uses the median to divide the
ordered dataset into two halves but if the sample is
odd, it includes the median in both halves - Q1 is then
the median of the lower half and Q3 the median of the
upper half.
method #10 (listed on
http://jse.amstat.org/v14n3/langford.html). The
"exclusive" method uses the median to divide the
ordered dataset into two halves if the sample is odd,
it does not include the median in either half - Q1 is
then the median of the lower half and Q3 the median of
the upper half. The "inclusive" method also uses the
median to divide the ordered dataset into two halves
but if the sample is odd, it includes the median in
both halves - Q1 is then the median of the lower half
and Q3 the median of the upper half.
sd
Sets the standard deviation values. There should be as
many items as the number of boxes desired. This
Expand Down Expand Up @@ -2846,17 +2846,17 @@ def __init__(
Sets the method used to compute the sample's Q1 and Q3
quartiles. The "linear" method uses the 25th percentile
for Q1 and 75th percentile for Q3 as computed using
method #10 (listed on http://www.amstat.org/publication
s/jse/v14n3/langford.html). The "exclusive" method uses
the median to divide the ordered dataset into two
halves if the sample is odd, it does not include the
median in either half - Q1 is then the median of the
lower half and Q3 the median of the upper half. The
"inclusive" method also uses the median to divide the
ordered dataset into two halves but if the sample is
odd, it includes the median in both halves - Q1 is then
the median of the lower half and Q3 the median of the
upper half.
method #10 (listed on
http://jse.amstat.org/v14n3/langford.html). The
"exclusive" method uses the median to divide the
ordered dataset into two halves if the sample is odd,
it does not include the median in either half - Q1 is
then the median of the lower half and Q3 the median of
the upper half. The "inclusive" method also uses the
median to divide the ordered dataset into two halves
but if the sample is odd, it includes the median in
both halves - Q1 is then the median of the lower half
and Q3 the median of the upper half.
sd
Sets the standard deviation values. There should be as
many items as the number of boxes desired. This
Expand Down
Loading