Skip to content

Commit f622085

Browse files
bump plotly.js to 1.53.0 (#2340)
1 parent 19a2091 commit f622085

File tree

500 files changed

+24365
-18343
lines changed

Some content is hidden

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

500 files changed

+24365
-18343
lines changed

packages/javascript/jupyterlab-plotly/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"typescript": "~3.7.0"
3232
},
3333
"dependencies": {
34-
"plotly.js": "^1.52.1",
34+
"plotly.js": "^1.53.0",
3535
"@types/plotly.js": "1.44.28",
3636
"@jupyterlab/rendermime-interfaces": "^1.3.0 || ^2.0.0",
3737
"@lumino/messaging": "^1.2.3",

packages/javascript/plotlywidget/package-lock.json

+132-98
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/javascript/plotlywidget/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"typescript": "~3.1.1"
3434
},
3535
"dependencies": {
36-
"plotly.js": "^1.52.2",
36+
"plotly.js": "^1.53.0",
3737
"@jupyter-widgets/base": "^2.0.0 || ^3.0.0",
3838
"lodash": "^4.17.4"
3939
},

packages/python/plotly/codegen/resources/plot-schema.json

+1,690-1,508
Large diffs are not rendered by default.

packages/python/plotly/plotly/graph_objs/__init__.py

+4,236-3,065
Large diffs are not rendered by default.

packages/python/plotly/plotly/graph_objs/_figure.py

+1,136-705
Large diffs are not rendered by default.

packages/python/plotly/plotly/graph_objs/_figurewidget.py

+1,136-705
Large diffs are not rendered by default.

packages/python/plotly/plotly/graph_objs/area/__init__.py

+61-41
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ def maxpoints(self, val):
3232
def token(self):
3333
"""
3434
The stream id number links a data trace on a plot with a
35-
stream. See https://plot.ly/settings for more details.
35+
stream. See https://chart-studio.plotly.com/settings for more
36+
details.
3637
3738
The 'token' property is a string and must be specified as:
3839
- A non-empty string
@@ -65,8 +66,8 @@ def _prop_descriptions(self):
6566
plot.
6667
token
6768
The stream id number links a data trace on a plot with
68-
a stream. See https://plot.ly/settings for more
69-
details.
69+
a stream. See https://chart-studio.plotly.com/settings
70+
for more details.
7071
"""
7172

7273
def __init__(self, arg=None, maxpoints=None, token=None, **kwargs):
@@ -85,8 +86,8 @@ def __init__(self, arg=None, maxpoints=None, token=None, **kwargs):
8586
plot.
8687
token
8788
The stream id number links a data trace on a plot with
88-
a stream. See https://plot.ly/settings for more
89-
details.
89+
a stream. See https://chart-studio.plotly.com/settings
90+
for more details.
9091
9192
Returns
9293
-------
@@ -214,7 +215,7 @@ def color(self, val):
214215
@property
215216
def colorsrc(self):
216217
"""
217-
Sets the source reference on plot.ly for color .
218+
Sets the source reference on Chart Studio Cloud for color .
218219
219220
The 'colorsrc' property must be specified as a string or
220221
as a plotly.grid_objs.Column object
@@ -256,7 +257,7 @@ def opacity(self, val):
256257
@property
257258
def opacitysrc(self):
258259
"""
259-
Sets the source reference on plot.ly for opacity .
260+
Sets the source reference on Chart Studio Cloud for opacity .
260261
261262
The 'opacitysrc' property must be specified as a string or
262263
as a plotly.grid_objs.Column object
@@ -298,7 +299,7 @@ def size(self, val):
298299
@property
299300
def sizesrc(self):
300301
"""
301-
Sets the source reference on plot.ly for size .
302+
Sets the source reference on Chart Studio Cloud for size .
302303
303304
The 'sizesrc' property must be specified as a string or
304305
as a plotly.grid_objs.Column object
@@ -405,7 +406,7 @@ def symbol(self, val):
405406
@property
406407
def symbolsrc(self):
407408
"""
408-
Sets the source reference on plot.ly for symbol .
409+
Sets the source reference on Chart Studio Cloud for symbol .
409410
410411
The 'symbolsrc' property must be specified as a string or
411412
as a plotly.grid_objs.Column object
@@ -439,17 +440,20 @@ def _prop_descriptions(self):
439440
values of the array or relative to `marker.cmin` and
440441
`marker.cmax` if set.
441442
colorsrc
442-
Sets the source reference on plot.ly for color .
443+
Sets the source reference on Chart Studio Cloud for
444+
color .
443445
opacity
444446
Area traces are deprecated! Please switch to the
445447
"barpolar" trace type. Sets the marker opacity.
446448
opacitysrc
447-
Sets the source reference on plot.ly for opacity .
449+
Sets the source reference on Chart Studio Cloud for
450+
opacity .
448451
size
449452
Area traces are deprecated! Please switch to the
450453
"barpolar" trace type. Sets the marker size (in px).
451454
sizesrc
452-
Sets the source reference on plot.ly for size .
455+
Sets the source reference on Chart Studio Cloud for
456+
size .
453457
symbol
454458
Area traces are deprecated! Please switch to the
455459
"barpolar" trace type. Sets the marker symbol type.
@@ -458,7 +462,8 @@ def _prop_descriptions(self):
458462
"-dot" to a symbol name. Adding 300 is equivalent to
459463
appending "-open-dot" or "dot-open" to a symbol name.
460464
symbolsrc
461-
Sets the source reference on plot.ly for symbol .
465+
Sets the source reference on Chart Studio Cloud for
466+
symbol .
462467
"""
463468

464469
def __init__(
@@ -490,17 +495,20 @@ def __init__(
490495
values of the array or relative to `marker.cmin` and
491496
`marker.cmax` if set.
492497
colorsrc
493-
Sets the source reference on plot.ly for color .
498+
Sets the source reference on Chart Studio Cloud for
499+
color .
494500
opacity
495501
Area traces are deprecated! Please switch to the
496502
"barpolar" trace type. Sets the marker opacity.
497503
opacitysrc
498-
Sets the source reference on plot.ly for opacity .
504+
Sets the source reference on Chart Studio Cloud for
505+
opacity .
499506
size
500507
Area traces are deprecated! Please switch to the
501508
"barpolar" trace type. Sets the marker size (in px).
502509
sizesrc
503-
Sets the source reference on plot.ly for size .
510+
Sets the source reference on Chart Studio Cloud for
511+
size .
504512
symbol
505513
Area traces are deprecated! Please switch to the
506514
"barpolar" trace type. Sets the marker symbol type.
@@ -509,7 +517,8 @@ def __init__(
509517
"-dot" to a symbol name. Adding 300 is equivalent to
510518
appending "-open-dot" or "dot-open" to a symbol name.
511519
symbolsrc
512-
Sets the source reference on plot.ly for symbol .
520+
Sets the source reference on Chart Studio Cloud for
521+
symbol .
513522
514523
Returns
515524
-------
@@ -615,7 +624,7 @@ def align(self, val):
615624
@property
616625
def alignsrc(self):
617626
"""
618-
Sets the source reference on plot.ly for align .
627+
Sets the source reference on Chart Studio Cloud for align .
619628
620629
The 'alignsrc' property must be specified as a string or
621630
as a plotly.grid_objs.Column object
@@ -695,7 +704,7 @@ def bgcolor(self, val):
695704
@property
696705
def bgcolorsrc(self):
697706
"""
698-
Sets the source reference on plot.ly for bgcolor .
707+
Sets the source reference on Chart Studio Cloud for bgcolor .
699708
700709
The 'bgcolorsrc' property must be specified as a string or
701710
as a plotly.grid_objs.Column object
@@ -775,7 +784,8 @@ def bordercolor(self, val):
775784
@property
776785
def bordercolorsrc(self):
777786
"""
778-
Sets the source reference on plot.ly for bordercolor .
787+
Sets the source reference on Chart Studio Cloud for
788+
bordercolor .
779789
780790
The 'bordercolorsrc' property must be specified as a string or
781791
as a plotly.grid_objs.Column object
@@ -808,8 +818,8 @@ def font(self):
808818
color
809819
810820
colorsrc
811-
Sets the source reference on plot.ly for color
812-
.
821+
Sets the source reference on Chart Studio Cloud
822+
for color .
813823
family
814824
HTML font family - the typeface that will be
815825
applied by the web browser. The web browser
@@ -818,22 +828,23 @@ def font(self):
818828
Provide multiple font families, separated by
819829
commas, to indicate the preference in which to
820830
apply fonts if they aren't available on the
821-
system. The plotly service (at https://plot.ly
822-
or on-premise) generates images on a server,
823-
where only a select number of fonts are
824-
installed and supported. These include "Arial",
825-
"Balto", "Courier New", "Droid Sans",, "Droid
826-
Serif", "Droid Sans Mono", "Gravitas One", "Old
831+
system. The Chart Studio Cloud (at
832+
https://chart-studio.plotly.com or on-premise)
833+
generates images on a server, where only a
834+
select number of fonts are installed and
835+
supported. These include "Arial", "Balto",
836+
"Courier New", "Droid Sans",, "Droid Serif",
837+
"Droid Sans Mono", "Gravitas One", "Old
827838
Standard TT", "Open Sans", "Overpass", "PT Sans
828839
Narrow", "Raleway", "Times New Roman".
829840
familysrc
830-
Sets the source reference on plot.ly for
831-
family .
841+
Sets the source reference on Chart Studio Cloud
842+
for family .
832843
size
833844
834845
sizesrc
835-
Sets the source reference on plot.ly for size
836-
.
846+
Sets the source reference on Chart Studio Cloud
847+
for size .
837848
838849
Returns
839850
-------
@@ -877,7 +888,8 @@ def namelength(self, val):
877888
@property
878889
def namelengthsrc(self):
879890
"""
880-
Sets the source reference on plot.ly for namelength .
891+
Sets the source reference on Chart Studio Cloud for namelength
892+
.
881893
882894
The 'namelengthsrc' property must be specified as a string or
883895
as a plotly.grid_objs.Column object
@@ -908,17 +920,20 @@ def _prop_descriptions(self):
908920
within hover label box. Has an effect only if the hover
909921
label text spans more two or more lines
910922
alignsrc
911-
Sets the source reference on plot.ly for align .
923+
Sets the source reference on Chart Studio Cloud for
924+
align .
912925
bgcolor
913926
Sets the background color of the hover labels for this
914927
trace
915928
bgcolorsrc
916-
Sets the source reference on plot.ly for bgcolor .
929+
Sets the source reference on Chart Studio Cloud for
930+
bgcolor .
917931
bordercolor
918932
Sets the border color of the hover labels for this
919933
trace.
920934
bordercolorsrc
921-
Sets the source reference on plot.ly for bordercolor .
935+
Sets the source reference on Chart Studio Cloud for
936+
bordercolor .
922937
font
923938
Sets the font used in hover labels.
924939
namelength
@@ -930,7 +945,8 @@ def _prop_descriptions(self):
930945
but if it is longer, will truncate to `namelength - 3`
931946
characters and add an ellipsis.
932947
namelengthsrc
933-
Sets the source reference on plot.ly for namelength .
948+
Sets the source reference on Chart Studio Cloud for
949+
namelength .
934950
"""
935951

936952
def __init__(
@@ -961,17 +977,20 @@ def __init__(
961977
within hover label box. Has an effect only if the hover
962978
label text spans more two or more lines
963979
alignsrc
964-
Sets the source reference on plot.ly for align .
980+
Sets the source reference on Chart Studio Cloud for
981+
align .
965982
bgcolor
966983
Sets the background color of the hover labels for this
967984
trace
968985
bgcolorsrc
969-
Sets the source reference on plot.ly for bgcolor .
986+
Sets the source reference on Chart Studio Cloud for
987+
bgcolor .
970988
bordercolor
971989
Sets the border color of the hover labels for this
972990
trace.
973991
bordercolorsrc
974-
Sets the source reference on plot.ly for bordercolor .
992+
Sets the source reference on Chart Studio Cloud for
993+
bordercolor .
975994
font
976995
Sets the font used in hover labels.
977996
namelength
@@ -983,7 +1002,8 @@ def __init__(
9831002
but if it is longer, will truncate to `namelength - 3`
9841003
characters and add an ellipsis.
9851004
namelengthsrc
986-
Sets the source reference on plot.ly for namelength .
1005+
Sets the source reference on Chart Studio Cloud for
1006+
namelength .
9871007
9881008
Returns
9891009
-------

0 commit comments

Comments
 (0)