Skip to content
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
195,724 changes: 97,869 additions & 97,855 deletions codegen/resources/plot-schema.json

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions js/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
},
"dependencies": {
"lodash-es": "^4.17.21",
"plotly.js": "3.3.0",
"plotly.js": "3.3.1",
"@lumino/widgets": "~2.4.0"
},
"devDependencies": {
Expand Down
28 changes: 21 additions & 7 deletions plotly/graph_objs/_figure.py
Original file line number Diff line number Diff line change
Expand Up @@ -12669,6 +12669,7 @@ def add_pie(
legendgroup=None,
legendgrouptitle=None,
legendrank=None,
legendsrc=None,
legendwidth=None,
marker=None,
meta=None,
Expand All @@ -12681,6 +12682,7 @@ def add_pie(
rotation=None,
scalegroup=None,
showlegend=None,
showlegendsrc=None,
sort=None,
stream=None,
text=None,
Expand Down Expand Up @@ -12831,11 +12833,13 @@ def add_pie(
Sets the source reference on Chart Studio Cloud for
`labels`.
legend
Sets the reference to a legend to show this trace in.
References to these legends are "legend", "legend2",
"legend3", etc. Settings for these legends are set in
the layout, under `layout.legend`, `layout.legend2`,
etc.
Sets the reference to a legend to show the pie slices
in. Can be an array if `values` is set. In that case,
each entry specifies the legend reference for one
slice. References to these legends are "legend",
"legend2", "legend3", etc. Settings for these legends
are set in the layout, under `layout.legend`,
`layout.legend2`, etc.
legendgroup
Sets the legend group for this trace. Traces and shapes
part of the same legend group hide/show at the same
Expand All @@ -12854,6 +12858,9 @@ def add_pie(
unranked or equal rank items shapes would be displayed
after traces i.e. according to their order in data and
layout.
legendsrc
Sets the source reference on Chart Studio Cloud for
`legend`.
legendwidth
Sets the width (in px or fraction) of the legend for
this trace.
Expand Down Expand Up @@ -12901,8 +12908,13 @@ def add_pie(
non-empty group id here shared by every trace in the
same group.
showlegend
Determines whether or not an item corresponding to this
trace is shown in the legend.
Determines whether or not items corresponding to the
pie slices are shown in the legend. Can be an array if
`values` is set. In that case, each entry specifies
appearance in the legend for one slice.
showlegendsrc
Sets the source reference on Chart Studio Cloud for
`showlegend`.
sort
Determines whether or not the sectors are reordered
from largest to smallest.
Expand Down Expand Up @@ -13038,6 +13050,7 @@ def add_pie(
legendgroup=legendgroup,
legendgrouptitle=legendgrouptitle,
legendrank=legendrank,
legendsrc=legendsrc,
legendwidth=legendwidth,
marker=marker,
meta=meta,
Expand All @@ -13050,6 +13063,7 @@ def add_pie(
rotation=rotation,
scalegroup=scalegroup,
showlegend=showlegend,
showlegendsrc=showlegendsrc,
sort=sort,
stream=stream,
text=text,
Expand Down
28 changes: 21 additions & 7 deletions plotly/graph_objs/_figurewidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -12671,6 +12671,7 @@ def add_pie(
legendgroup=None,
legendgrouptitle=None,
legendrank=None,
legendsrc=None,
legendwidth=None,
marker=None,
meta=None,
Expand All @@ -12683,6 +12684,7 @@ def add_pie(
rotation=None,
scalegroup=None,
showlegend=None,
showlegendsrc=None,
sort=None,
stream=None,
text=None,
Expand Down Expand Up @@ -12833,11 +12835,13 @@ def add_pie(
Sets the source reference on Chart Studio Cloud for
`labels`.
legend
Sets the reference to a legend to show this trace in.
References to these legends are "legend", "legend2",
"legend3", etc. Settings for these legends are set in
the layout, under `layout.legend`, `layout.legend2`,
etc.
Sets the reference to a legend to show the pie slices
in. Can be an array if `values` is set. In that case,
each entry specifies the legend reference for one
slice. References to these legends are "legend",
"legend2", "legend3", etc. Settings for these legends
are set in the layout, under `layout.legend`,
`layout.legend2`, etc.
legendgroup
Sets the legend group for this trace. Traces and shapes
part of the same legend group hide/show at the same
Expand All @@ -12856,6 +12860,9 @@ def add_pie(
unranked or equal rank items shapes would be displayed
after traces i.e. according to their order in data and
layout.
legendsrc
Sets the source reference on Chart Studio Cloud for
`legend`.
legendwidth
Sets the width (in px or fraction) of the legend for
this trace.
Expand Down Expand Up @@ -12903,8 +12910,13 @@ def add_pie(
non-empty group id here shared by every trace in the
same group.
showlegend
Determines whether or not an item corresponding to this
trace is shown in the legend.
Determines whether or not items corresponding to the
pie slices are shown in the legend. Can be an array if
`values` is set. In that case, each entry specifies
appearance in the legend for one slice.
showlegendsrc
Sets the source reference on Chart Studio Cloud for
`showlegend`.
sort
Determines whether or not the sectors are reordered
from largest to smallest.
Expand Down Expand Up @@ -13040,6 +13052,7 @@ def add_pie(
legendgroup=legendgroup,
legendgrouptitle=legendgrouptitle,
legendrank=legendrank,
legendsrc=legendsrc,
legendwidth=legendwidth,
marker=marker,
meta=meta,
Expand All @@ -13052,6 +13065,7 @@ def add_pie(
rotation=rotation,
scalegroup=scalegroup,
showlegend=showlegend,
showlegendsrc=showlegendsrc,
sort=sort,
stream=stream,
text=text,
Expand Down
Loading