Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 9cd1826

Browse files
committed
📦 Regenerate.
1 parent 1961c92 commit 9cd1826

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

dash_core_components/_graph.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ class Graph(DashComponent):
2424
clear_on_unhover = ComponentProp('clear_on_unhover', False, False)
2525
selectedData = ComponentProp('selectedData', UNDEFINED, False)
2626
relayoutData = ComponentProp('relayoutData', UNDEFINED, False)
27+
extendData = ComponentProp('extendData', UNDEFINED, False)
2728
restyleData = ComponentProp('restyleData', UNDEFINED, False)
2829
figure = ComponentProp('figure', UNDEFINED, False)
2930
style = ComponentProp('style', UNDEFINED, False)
@@ -42,6 +43,7 @@ def __init__(
4243
clear_on_unhover=False,
4344
selectedData=UNDEFINED,
4445
relayoutData=UNDEFINED,
46+
extendData=UNDEFINED,
4547
restyleData=UNDEFINED,
4648
figure=UNDEFINED,
4749
style=UNDEFINED,
@@ -51,7 +53,7 @@ def __init__(
5153
config=UNDEFINED,
5254
loading_state=UNDEFINED,
5355
):
54-
# type: (typing.Union[str, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.List, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, typing.Dict[str, typing.Union[bool]], typing.Union[float, int], typing.Any, str, typing.List]], Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined]) -> None # noqa: E501
56+
# type: (typing.Union[str, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.List, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[str, Undefined], typing.Union[bool, Undefined], typing.Union[typing.Dict, Undefined], typing.Union[typing.Dict[str, typing.Union[bool, typing.Dict[str, typing.Union[bool]], typing.Union[float, int], typing.Any, str, typing.List]], Undefined], typing.Union[typing.Dict[str, typing.Union[bool, str]], Undefined]) -> None # noqa: E501
5557
"""
5658
:param id: The ID of this component, used to identify dash
5759
components in callbacks. The ID needs to be unique
@@ -75,6 +77,18 @@ def __init__(
7577
other layout-level edits. Has the form `{<attr
7678
string>: <value>}` describing the changes
7779
made. Read-only.(default=null)
80+
:param extendData: Data that should be appended to existing traces.
81+
Has the form `[updateData, traceIndices,
82+
maxPoints]`, where `updateData` is an object
83+
containing the data to extend, `traceIndices`
84+
(optional) is an array of trace indices that
85+
should be extended, and `maxPoints` (optional)
86+
is either an integer defining the maximum number
87+
of points allowed or an object with key:value
88+
pairs matching `updateData` Reference the
89+
Plotly.extendTraces API for full usage:
90+
https://plot.ly/javascript/plotlyjs-function-
91+
reference/#plotlyextendtraces(default=null)
7892
:param restyleData: Data from latest restyle event which occurs
7993
when the user toggles a legend item, changes
8094
parcoords selections, or other trace-level

0 commit comments

Comments
 (0)